vantage.BusinessMetric
Explore with Pulumi AI
Create BusinessMetric Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BusinessMetric(name: string, args: BusinessMetricArgs, opts?: CustomResourceOptions);
@overload
def BusinessMetric(resource_name: str,
args: BusinessMetricArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BusinessMetric(resource_name: str,
opts: Optional[ResourceOptions] = None,
title: Optional[str] = None,
cloudwatch_fields: Optional[BusinessMetricCloudwatchFieldsArgs] = None,
cost_report_tokens_with_metadatas: Optional[Sequence[BusinessMetricCostReportTokensWithMetadataArgs]] = None,
datadog_metric_fields: Optional[BusinessMetricDatadogMetricFieldsArgs] = None,
values: Optional[Sequence[BusinessMetricValueArgs]] = None)
func NewBusinessMetric(ctx *Context, name string, args BusinessMetricArgs, opts ...ResourceOption) (*BusinessMetric, error)
public BusinessMetric(string name, BusinessMetricArgs args, CustomResourceOptions? opts = null)
public BusinessMetric(String name, BusinessMetricArgs args)
public BusinessMetric(String name, BusinessMetricArgs args, CustomResourceOptions options)
type: vantage:BusinessMetric
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BusinessMetricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BusinessMetricArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BusinessMetricArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BusinessMetricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BusinessMetricArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var businessMetricResource = new Vantage.BusinessMetric("businessMetricResource", new()
{
Title = "string",
CloudwatchFields = new Vantage.Inputs.BusinessMetricCloudwatchFieldsArgs
{
Dimensions = new[]
{
new Vantage.Inputs.BusinessMetricCloudwatchFieldsDimensionArgs
{
Name = "string",
Value = "string",
},
},
IntegrationToken = "string",
LabelDimension = "string",
MetricName = "string",
Namespace = "string",
Region = "string",
Stat = "string",
},
CostReportTokensWithMetadatas = new[]
{
new Vantage.Inputs.BusinessMetricCostReportTokensWithMetadataArgs
{
CostReportToken = "string",
LabelFilters = new[]
{
"string",
},
UnitScale = "string",
},
},
DatadogMetricFields = new Vantage.Inputs.BusinessMetricDatadogMetricFieldsArgs
{
IntegrationToken = "string",
Query = "string",
},
Values = new[]
{
new Vantage.Inputs.BusinessMetricValueArgs
{
Amount = 0,
Date = "string",
Label = "string",
},
},
});
example, err := vantage.NewBusinessMetric(ctx, "businessMetricResource", &vantage.BusinessMetricArgs{
Title: pulumi.String("string"),
CloudwatchFields: &vantage.BusinessMetricCloudwatchFieldsArgs{
Dimensions: vantage.BusinessMetricCloudwatchFieldsDimensionArray{
&vantage.BusinessMetricCloudwatchFieldsDimensionArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
IntegrationToken: pulumi.String("string"),
LabelDimension: pulumi.String("string"),
MetricName: pulumi.String("string"),
Namespace: pulumi.String("string"),
Region: pulumi.String("string"),
Stat: pulumi.String("string"),
},
CostReportTokensWithMetadatas: vantage.BusinessMetricCostReportTokensWithMetadataArray{
&vantage.BusinessMetricCostReportTokensWithMetadataArgs{
CostReportToken: pulumi.String("string"),
LabelFilters: pulumi.StringArray{
pulumi.String("string"),
},
UnitScale: pulumi.String("string"),
},
},
DatadogMetricFields: &vantage.BusinessMetricDatadogMetricFieldsArgs{
IntegrationToken: pulumi.String("string"),
Query: pulumi.String("string"),
},
Values: vantage.BusinessMetricValueArray{
&vantage.BusinessMetricValueArgs{
Amount: pulumi.Float64(0),
Date: pulumi.String("string"),
Label: pulumi.String("string"),
},
},
})
var businessMetricResource = new BusinessMetric("businessMetricResource", BusinessMetricArgs.builder()
.title("string")
.cloudwatchFields(BusinessMetricCloudwatchFieldsArgs.builder()
.dimensions(BusinessMetricCloudwatchFieldsDimensionArgs.builder()
.name("string")
.value("string")
.build())
.integrationToken("string")
.labelDimension("string")
.metricName("string")
.namespace("string")
.region("string")
.stat("string")
.build())
.costReportTokensWithMetadatas(BusinessMetricCostReportTokensWithMetadataArgs.builder()
.costReportToken("string")
.labelFilters("string")
.unitScale("string")
.build())
.datadogMetricFields(BusinessMetricDatadogMetricFieldsArgs.builder()
.integrationToken("string")
.query("string")
.build())
.values(BusinessMetricValueArgs.builder()
.amount(0.0)
.date("string")
.label("string")
.build())
.build());
business_metric_resource = vantage.BusinessMetric("businessMetricResource",
title="string",
cloudwatch_fields={
"dimensions": [{
"name": "string",
"value": "string",
}],
"integration_token": "string",
"label_dimension": "string",
"metric_name": "string",
"namespace": "string",
"region": "string",
"stat": "string",
},
cost_report_tokens_with_metadatas=[{
"cost_report_token": "string",
"label_filters": ["string"],
"unit_scale": "string",
}],
datadog_metric_fields={
"integration_token": "string",
"query": "string",
},
values=[{
"amount": 0,
"date": "string",
"label": "string",
}])
const businessMetricResource = new vantage.BusinessMetric("businessMetricResource", {
title: "string",
cloudwatchFields: {
dimensions: [{
name: "string",
value: "string",
}],
integrationToken: "string",
labelDimension: "string",
metricName: "string",
namespace: "string",
region: "string",
stat: "string",
},
costReportTokensWithMetadatas: [{
costReportToken: "string",
labelFilters: ["string"],
unitScale: "string",
}],
datadogMetricFields: {
integrationToken: "string",
query: "string",
},
values: [{
amount: 0,
date: "string",
label: "string",
}],
});
type: vantage:BusinessMetric
properties:
cloudwatchFields:
dimensions:
- name: string
value: string
integrationToken: string
labelDimension: string
metricName: string
namespace: string
region: string
stat: string
costReportTokensWithMetadatas:
- costReportToken: string
labelFilters:
- string
unitScale: string
datadogMetricFields:
integrationToken: string
query: string
title: string
values:
- amount: 0
date: string
label: string
BusinessMetric Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BusinessMetric resource accepts the following input properties:
- Title string
- The title of the BusinessMetrics.
- Cloudwatch
Fields BusinessMetric Cloudwatch Fields - Cloudwatch configuration fields.
- Cost
Report List<BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata> - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- Datadog
Metric BusinessFields Metric Datadog Metric Fields - Datadog metric configuration fields
- Values
List<Business
Metric Value> - The dates, amounts, and (optional) labels for the BusinessMetric.
- Title string
- The title of the BusinessMetrics.
- Cloudwatch
Fields BusinessMetric Cloudwatch Fields Args - Cloudwatch configuration fields.
- Cost
Report []BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata Args - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- Datadog
Metric BusinessFields Metric Datadog Metric Fields Args - Datadog metric configuration fields
- Values
[]Business
Metric Value Args - The dates, amounts, and (optional) labels for the BusinessMetric.
- title String
- The title of the BusinessMetrics.
- cloudwatch
Fields BusinessMetric Cloudwatch Fields - Cloudwatch configuration fields.
- cost
Report List<BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata> - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- datadog
Metric BusinessFields Metric Datadog Metric Fields - Datadog metric configuration fields
- values
List<Business
Metric Value> - The dates, amounts, and (optional) labels for the BusinessMetric.
- title string
- The title of the BusinessMetrics.
- cloudwatch
Fields BusinessMetric Cloudwatch Fields - Cloudwatch configuration fields.
- cost
Report BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata[] - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- datadog
Metric BusinessFields Metric Datadog Metric Fields - Datadog metric configuration fields
- values
Business
Metric Value[] - The dates, amounts, and (optional) labels for the BusinessMetric.
- title str
- The title of the BusinessMetrics.
- cloudwatch_
fields BusinessMetric Cloudwatch Fields Args - Cloudwatch configuration fields.
- cost_
report_ Sequence[Businesstokens_ with_ metadatas Metric Cost Report Tokens With Metadata Args] - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- datadog_
metric_ Businessfields Metric Datadog Metric Fields Args - Datadog metric configuration fields
- values
Sequence[Business
Metric Value Args] - The dates, amounts, and (optional) labels for the BusinessMetric.
- title String
- The title of the BusinessMetrics.
- cloudwatch
Fields Property Map - Cloudwatch configuration fields.
- cost
Report List<Property Map>Tokens With Metadatas - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- datadog
Metric Property MapFields - Datadog metric configuration fields
- values List<Property Map>
- The dates, amounts, and (optional) labels for the BusinessMetric.
Outputs
All input properties are implicitly available as output properties. Additionally, the BusinessMetric resource produces the following output properties:
- Created
By stringToken - The token of the Creator of the BusinessMetric.
- Id string
- The provider-assigned unique ID for this managed resource.
- Import
Type string - The type of import for the BusinessMetric.
- Integration
Token string - The Integration token used to import the BusinessMetric.
- Token string
- The token of the business metric
- Created
By stringToken - The token of the Creator of the BusinessMetric.
- Id string
- The provider-assigned unique ID for this managed resource.
- Import
Type string - The type of import for the BusinessMetric.
- Integration
Token string - The Integration token used to import the BusinessMetric.
- Token string
- The token of the business metric
- created
By StringToken - The token of the Creator of the BusinessMetric.
- id String
- The provider-assigned unique ID for this managed resource.
- import
Type String - The type of import for the BusinessMetric.
- integration
Token String - The Integration token used to import the BusinessMetric.
- token String
- The token of the business metric
- created
By stringToken - The token of the Creator of the BusinessMetric.
- id string
- The provider-assigned unique ID for this managed resource.
- import
Type string - The type of import for the BusinessMetric.
- integration
Token string - The Integration token used to import the BusinessMetric.
- token string
- The token of the business metric
- created_
by_ strtoken - The token of the Creator of the BusinessMetric.
- id str
- The provider-assigned unique ID for this managed resource.
- import_
type str - The type of import for the BusinessMetric.
- integration_
token str - The Integration token used to import the BusinessMetric.
- token str
- The token of the business metric
- created
By StringToken - The token of the Creator of the BusinessMetric.
- id String
- The provider-assigned unique ID for this managed resource.
- import
Type String - The type of import for the BusinessMetric.
- integration
Token String - The Integration token used to import the BusinessMetric.
- token String
- The token of the business metric
Look up Existing BusinessMetric Resource
Get an existing BusinessMetric resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BusinessMetricState, opts?: CustomResourceOptions): BusinessMetric
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cloudwatch_fields: Optional[BusinessMetricCloudwatchFieldsArgs] = None,
cost_report_tokens_with_metadatas: Optional[Sequence[BusinessMetricCostReportTokensWithMetadataArgs]] = None,
created_by_token: Optional[str] = None,
datadog_metric_fields: Optional[BusinessMetricDatadogMetricFieldsArgs] = None,
import_type: Optional[str] = None,
integration_token: Optional[str] = None,
title: Optional[str] = None,
token: Optional[str] = None,
values: Optional[Sequence[BusinessMetricValueArgs]] = None) -> BusinessMetric
func GetBusinessMetric(ctx *Context, name string, id IDInput, state *BusinessMetricState, opts ...ResourceOption) (*BusinessMetric, error)
public static BusinessMetric Get(string name, Input<string> id, BusinessMetricState? state, CustomResourceOptions? opts = null)
public static BusinessMetric get(String name, Output<String> id, BusinessMetricState state, CustomResourceOptions options)
resources: _: type: vantage:BusinessMetric get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cloudwatch
Fields BusinessMetric Cloudwatch Fields - Cloudwatch configuration fields.
- Cost
Report List<BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata> - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- Created
By stringToken - The token of the Creator of the BusinessMetric.
- Datadog
Metric BusinessFields Metric Datadog Metric Fields - Datadog metric configuration fields
- Import
Type string - The type of import for the BusinessMetric.
- Integration
Token string - The Integration token used to import the BusinessMetric.
- Title string
- The title of the BusinessMetrics.
- Token string
- The token of the business metric
- Values
List<Business
Metric Value> - The dates, amounts, and (optional) labels for the BusinessMetric.
- Cloudwatch
Fields BusinessMetric Cloudwatch Fields Args - Cloudwatch configuration fields.
- Cost
Report []BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata Args - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- Created
By stringToken - The token of the Creator of the BusinessMetric.
- Datadog
Metric BusinessFields Metric Datadog Metric Fields Args - Datadog metric configuration fields
- Import
Type string - The type of import for the BusinessMetric.
- Integration
Token string - The Integration token used to import the BusinessMetric.
- Title string
- The title of the BusinessMetrics.
- Token string
- The token of the business metric
- Values
[]Business
Metric Value Args - The dates, amounts, and (optional) labels for the BusinessMetric.
- cloudwatch
Fields BusinessMetric Cloudwatch Fields - Cloudwatch configuration fields.
- cost
Report List<BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata> - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- created
By StringToken - The token of the Creator of the BusinessMetric.
- datadog
Metric BusinessFields Metric Datadog Metric Fields - Datadog metric configuration fields
- import
Type String - The type of import for the BusinessMetric.
- integration
Token String - The Integration token used to import the BusinessMetric.
- title String
- The title of the BusinessMetrics.
- token String
- The token of the business metric
- values
List<Business
Metric Value> - The dates, amounts, and (optional) labels for the BusinessMetric.
- cloudwatch
Fields BusinessMetric Cloudwatch Fields - Cloudwatch configuration fields.
- cost
Report BusinessTokens With Metadatas Metric Cost Report Tokens With Metadata[] - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- created
By stringToken - The token of the Creator of the BusinessMetric.
- datadog
Metric BusinessFields Metric Datadog Metric Fields - Datadog metric configuration fields
- import
Type string - The type of import for the BusinessMetric.
- integration
Token string - The Integration token used to import the BusinessMetric.
- title string
- The title of the BusinessMetrics.
- token string
- The token of the business metric
- values
Business
Metric Value[] - The dates, amounts, and (optional) labels for the BusinessMetric.
- cloudwatch_
fields BusinessMetric Cloudwatch Fields Args - Cloudwatch configuration fields.
- cost_
report_ Sequence[Businesstokens_ with_ metadatas Metric Cost Report Tokens With Metadata Args] - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- created_
by_ strtoken - The token of the Creator of the BusinessMetric.
- datadog_
metric_ Businessfields Metric Datadog Metric Fields Args - Datadog metric configuration fields
- import_
type str - The type of import for the BusinessMetric.
- integration_
token str - The Integration token used to import the BusinessMetric.
- title str
- The title of the BusinessMetrics.
- token str
- The token of the business metric
- values
Sequence[Business
Metric Value Args] - The dates, amounts, and (optional) labels for the BusinessMetric.
- cloudwatch
Fields Property Map - Cloudwatch configuration fields.
- cost
Report List<Property Map>Tokens With Metadatas - The tokens for any CostReports that use the BusinessMetric, the unit scale, and label filter.
- created
By StringToken - The token of the Creator of the BusinessMetric.
- datadog
Metric Property MapFields - Datadog metric configuration fields
- import
Type String - The type of import for the BusinessMetric.
- integration
Token String - The Integration token used to import the BusinessMetric.
- title String
- The title of the BusinessMetrics.
- token String
- The token of the business metric
- values List<Property Map>
- The dates, amounts, and (optional) labels for the BusinessMetric.
Supporting Types
BusinessMetricCloudwatchFields, BusinessMetricCloudwatchFieldsArgs
- Dimensions
List<Business
Metric Cloudwatch Fields Dimension> - The dimensions used to pull specific statistical data for Cloudwatch metrics.
- Integration
Token string - Integration token for the account from which you would like to fetch metrics.
- Label
Dimension string - The dimension used to aggregate the Cloudwatch metrics.
- Metric
Name string - The metric name used to import Cloudwatch metrics.
- Namespace string
- The namespace used to import Cloudwatch metrics.
- Region string
- The region used to import Cloudwatch metrics.
- Stat string
- The time aggregation function used to import Cloudwatch metrics.
- Dimensions
[]Business
Metric Cloudwatch Fields Dimension - The dimensions used to pull specific statistical data for Cloudwatch metrics.
- Integration
Token string - Integration token for the account from which you would like to fetch metrics.
- Label
Dimension string - The dimension used to aggregate the Cloudwatch metrics.
- Metric
Name string - The metric name used to import Cloudwatch metrics.
- Namespace string
- The namespace used to import Cloudwatch metrics.
- Region string
- The region used to import Cloudwatch metrics.
- Stat string
- The time aggregation function used to import Cloudwatch metrics.
- dimensions
List<Business
Metric Cloudwatch Fields Dimension> - The dimensions used to pull specific statistical data for Cloudwatch metrics.
- integration
Token String - Integration token for the account from which you would like to fetch metrics.
- label
Dimension String - The dimension used to aggregate the Cloudwatch metrics.
- metric
Name String - The metric name used to import Cloudwatch metrics.
- namespace String
- The namespace used to import Cloudwatch metrics.
- region String
- The region used to import Cloudwatch metrics.
- stat String
- The time aggregation function used to import Cloudwatch metrics.
- dimensions
Business
Metric Cloudwatch Fields Dimension[] - The dimensions used to pull specific statistical data for Cloudwatch metrics.
- integration
Token string - Integration token for the account from which you would like to fetch metrics.
- label
Dimension string - The dimension used to aggregate the Cloudwatch metrics.
- metric
Name string - The metric name used to import Cloudwatch metrics.
- namespace string
- The namespace used to import Cloudwatch metrics.
- region string
- The region used to import Cloudwatch metrics.
- stat string
- The time aggregation function used to import Cloudwatch metrics.
- dimensions
Sequence[Business
Metric Cloudwatch Fields Dimension] - The dimensions used to pull specific statistical data for Cloudwatch metrics.
- integration_
token str - Integration token for the account from which you would like to fetch metrics.
- label_
dimension str - The dimension used to aggregate the Cloudwatch metrics.
- metric_
name str - The metric name used to import Cloudwatch metrics.
- namespace str
- The namespace used to import Cloudwatch metrics.
- region str
- The region used to import Cloudwatch metrics.
- stat str
- The time aggregation function used to import Cloudwatch metrics.
- dimensions List<Property Map>
- The dimensions used to pull specific statistical data for Cloudwatch metrics.
- integration
Token String - Integration token for the account from which you would like to fetch metrics.
- label
Dimension String - The dimension used to aggregate the Cloudwatch metrics.
- metric
Name String - The metric name used to import Cloudwatch metrics.
- namespace String
- The namespace used to import Cloudwatch metrics.
- region String
- The region used to import Cloudwatch metrics.
- stat String
- The time aggregation function used to import Cloudwatch metrics.
BusinessMetricCloudwatchFieldsDimension, BusinessMetricCloudwatchFieldsDimensionArgs
BusinessMetricCostReportTokensWithMetadata, BusinessMetricCostReportTokensWithMetadataArgs
- Cost
Report stringToken - The token of the CostReport the BusinessMetric is attached to.
- Label
Filters List<string> - Include only values with these labels in the CostReport.
- Unit
Scale string - Determines the scale of the BusinessMetric's values within the CostReport.
- Cost
Report stringToken - The token of the CostReport the BusinessMetric is attached to.
- Label
Filters []string - Include only values with these labels in the CostReport.
- Unit
Scale string - Determines the scale of the BusinessMetric's values within the CostReport.
- cost
Report StringToken - The token of the CostReport the BusinessMetric is attached to.
- label
Filters List<String> - Include only values with these labels in the CostReport.
- unit
Scale String - Determines the scale of the BusinessMetric's values within the CostReport.
- cost
Report stringToken - The token of the CostReport the BusinessMetric is attached to.
- label
Filters string[] - Include only values with these labels in the CostReport.
- unit
Scale string - Determines the scale of the BusinessMetric's values within the CostReport.
- cost_
report_ strtoken - The token of the CostReport the BusinessMetric is attached to.
- label_
filters Sequence[str] - Include only values with these labels in the CostReport.
- unit_
scale str - Determines the scale of the BusinessMetric's values within the CostReport.
- cost
Report StringToken - The token of the CostReport the BusinessMetric is attached to.
- label
Filters List<String> - Include only values with these labels in the CostReport.
- unit
Scale String - Determines the scale of the BusinessMetric's values within the CostReport.
BusinessMetricDatadogMetricFields, BusinessMetricDatadogMetricFieldsArgs
- Integration
Token string - Integration token for the account from which you would like to fetch metrics.
- Query string
- Datadog metrics query string. e.g. sum:aws.applicationelb.request_count{region:us-east-1}.rollup(avg,daily)
- Integration
Token string - Integration token for the account from which you would like to fetch metrics.
- Query string
- Datadog metrics query string. e.g. sum:aws.applicationelb.request_count{region:us-east-1}.rollup(avg,daily)
- integration
Token String - Integration token for the account from which you would like to fetch metrics.
- query String
- Datadog metrics query string. e.g. sum:aws.applicationelb.request_count{region:us-east-1}.rollup(avg,daily)
- integration
Token string - Integration token for the account from which you would like to fetch metrics.
- query string
- Datadog metrics query string. e.g. sum:aws.applicationelb.request_count{region:us-east-1}.rollup(avg,daily)
- integration_
token str - Integration token for the account from which you would like to fetch metrics.
- query str
- Datadog metrics query string. e.g. sum:aws.applicationelb.request_count{region:us-east-1}.rollup(avg,daily)
- integration
Token String - Integration token for the account from which you would like to fetch metrics.
- query String
- Datadog metrics query string. e.g. sum:aws.applicationelb.request_count{region:us-east-1}.rollup(avg,daily)
BusinessMetricValue, BusinessMetricValueArgs
Package Details
- Repository
- vantage vantage-sh/terraform-provider-vantage
- License
- Notes
- This Pulumi package is based on the
vantage
Terraform Provider.