dynatrace.MetricEvents
Explore with Pulumi AI
Create MetricEvents Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MetricEvents(name: string, args: MetricEventsArgs, opts?: CustomResourceOptions);
@overload
def MetricEvents(resource_name: str,
args: MetricEventsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MetricEvents(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
event_template: Optional[MetricEventsEventTemplateArgs] = None,
model_properties: Optional[MetricEventsModelPropertiesArgs] = None,
query_definition: Optional[MetricEventsQueryDefinitionArgs] = None,
summary: Optional[str] = None,
event_entity_dimension_key: Optional[str] = None,
legacy_id: Optional[str] = None)
func NewMetricEvents(ctx *Context, name string, args MetricEventsArgs, opts ...ResourceOption) (*MetricEvents, error)
public MetricEvents(string name, MetricEventsArgs args, CustomResourceOptions? opts = null)
public MetricEvents(String name, MetricEventsArgs args)
public MetricEvents(String name, MetricEventsArgs args, CustomResourceOptions options)
type: dynatrace:MetricEvents
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 MetricEventsArgs
- 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 MetricEventsArgs
- 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 MetricEventsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MetricEventsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MetricEventsArgs
- 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 metricEventsResource = new Dynatrace.MetricEvents("metricEventsResource", new()
{
Enabled = false,
EventTemplate = new Dynatrace.Inputs.MetricEventsEventTemplateArgs
{
Description = "string",
EventType = "string",
Title = "string",
DavisMerge = false,
Metadatas = new[]
{
new Dynatrace.Inputs.MetricEventsEventTemplateMetadataArgs
{
MetadataKey = "string",
MetadataValue = "string",
},
},
},
ModelProperties = new Dynatrace.Inputs.MetricEventsModelPropertiesArgs
{
AlertCondition = "string",
AlertOnNoData = false,
DealertingSamples = 0,
Samples = 0,
Type = "string",
ViolatingSamples = 0,
SignalFluctuation = 0,
Threshold = 0,
Tolerance = 0,
},
QueryDefinition = new Dynatrace.Inputs.MetricEventsQueryDefinitionArgs
{
Type = "string",
Aggregation = "string",
DimensionFilter = new Dynatrace.Inputs.MetricEventsQueryDefinitionDimensionFilterArgs
{
Filters = new[]
{
new Dynatrace.Inputs.MetricEventsQueryDefinitionDimensionFilterFilterArgs
{
DimensionKey = "string",
DimensionValue = "string",
Operator = "string",
},
},
},
EntityFilter = new Dynatrace.Inputs.MetricEventsQueryDefinitionEntityFilterArgs
{
Conditions = new Dynatrace.Inputs.MetricEventsQueryDefinitionEntityFilterConditionsArgs
{
Conditions = new[]
{
new Dynatrace.Inputs.MetricEventsQueryDefinitionEntityFilterConditionsConditionArgs
{
Operator = "string",
Type = "string",
Value = "string",
},
},
},
DimensionKey = "string",
},
ManagementZone = "string",
MetricKey = "string",
MetricSelector = "string",
QueryOffset = 0,
},
Summary = "string",
EventEntityDimensionKey = "string",
LegacyId = "string",
});
example, err := dynatrace.NewMetricEvents(ctx, "metricEventsResource", &dynatrace.MetricEventsArgs{
Enabled: pulumi.Bool(false),
EventTemplate: &dynatrace.MetricEventsEventTemplateArgs{
Description: pulumi.String("string"),
EventType: pulumi.String("string"),
Title: pulumi.String("string"),
DavisMerge: pulumi.Bool(false),
Metadatas: dynatrace.MetricEventsEventTemplateMetadataArray{
&dynatrace.MetricEventsEventTemplateMetadataArgs{
MetadataKey: pulumi.String("string"),
MetadataValue: pulumi.String("string"),
},
},
},
ModelProperties: &dynatrace.MetricEventsModelPropertiesArgs{
AlertCondition: pulumi.String("string"),
AlertOnNoData: pulumi.Bool(false),
DealertingSamples: pulumi.Int(0),
Samples: pulumi.Int(0),
Type: pulumi.String("string"),
ViolatingSamples: pulumi.Int(0),
SignalFluctuation: pulumi.Float64(0),
Threshold: pulumi.Float64(0),
Tolerance: pulumi.Float64(0),
},
QueryDefinition: &dynatrace.MetricEventsQueryDefinitionArgs{
Type: pulumi.String("string"),
Aggregation: pulumi.String("string"),
DimensionFilter: &dynatrace.MetricEventsQueryDefinitionDimensionFilterArgs{
Filters: dynatrace.MetricEventsQueryDefinitionDimensionFilterFilterArray{
&dynatrace.MetricEventsQueryDefinitionDimensionFilterFilterArgs{
DimensionKey: pulumi.String("string"),
DimensionValue: pulumi.String("string"),
Operator: pulumi.String("string"),
},
},
},
EntityFilter: &dynatrace.MetricEventsQueryDefinitionEntityFilterArgs{
Conditions: &dynatrace.MetricEventsQueryDefinitionEntityFilterConditionsArgs{
Conditions: dynatrace.MetricEventsQueryDefinitionEntityFilterConditionsConditionArray{
&dynatrace.MetricEventsQueryDefinitionEntityFilterConditionsConditionArgs{
Operator: pulumi.String("string"),
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
DimensionKey: pulumi.String("string"),
},
ManagementZone: pulumi.String("string"),
MetricKey: pulumi.String("string"),
MetricSelector: pulumi.String("string"),
QueryOffset: pulumi.Int(0),
},
Summary: pulumi.String("string"),
EventEntityDimensionKey: pulumi.String("string"),
LegacyId: pulumi.String("string"),
})
var metricEventsResource = new MetricEvents("metricEventsResource", MetricEventsArgs.builder()
.enabled(false)
.eventTemplate(MetricEventsEventTemplateArgs.builder()
.description("string")
.eventType("string")
.title("string")
.davisMerge(false)
.metadatas(MetricEventsEventTemplateMetadataArgs.builder()
.metadataKey("string")
.metadataValue("string")
.build())
.build())
.modelProperties(MetricEventsModelPropertiesArgs.builder()
.alertCondition("string")
.alertOnNoData(false)
.dealertingSamples(0)
.samples(0)
.type("string")
.violatingSamples(0)
.signalFluctuation(0)
.threshold(0)
.tolerance(0)
.build())
.queryDefinition(MetricEventsQueryDefinitionArgs.builder()
.type("string")
.aggregation("string")
.dimensionFilter(MetricEventsQueryDefinitionDimensionFilterArgs.builder()
.filters(MetricEventsQueryDefinitionDimensionFilterFilterArgs.builder()
.dimensionKey("string")
.dimensionValue("string")
.operator("string")
.build())
.build())
.entityFilter(MetricEventsQueryDefinitionEntityFilterArgs.builder()
.conditions(MetricEventsQueryDefinitionEntityFilterConditionsArgs.builder()
.conditions(MetricEventsQueryDefinitionEntityFilterConditionsConditionArgs.builder()
.operator("string")
.type("string")
.value("string")
.build())
.build())
.dimensionKey("string")
.build())
.managementZone("string")
.metricKey("string")
.metricSelector("string")
.queryOffset(0)
.build())
.summary("string")
.eventEntityDimensionKey("string")
.legacyId("string")
.build());
metric_events_resource = dynatrace.MetricEvents("metricEventsResource",
enabled=False,
event_template={
"description": "string",
"event_type": "string",
"title": "string",
"davis_merge": False,
"metadatas": [{
"metadata_key": "string",
"metadata_value": "string",
}],
},
model_properties={
"alert_condition": "string",
"alert_on_no_data": False,
"dealerting_samples": 0,
"samples": 0,
"type": "string",
"violating_samples": 0,
"signal_fluctuation": 0,
"threshold": 0,
"tolerance": 0,
},
query_definition={
"type": "string",
"aggregation": "string",
"dimension_filter": {
"filters": [{
"dimension_key": "string",
"dimension_value": "string",
"operator": "string",
}],
},
"entity_filter": {
"conditions": {
"conditions": [{
"operator": "string",
"type": "string",
"value": "string",
}],
},
"dimension_key": "string",
},
"management_zone": "string",
"metric_key": "string",
"metric_selector": "string",
"query_offset": 0,
},
summary="string",
event_entity_dimension_key="string",
legacy_id="string")
const metricEventsResource = new dynatrace.MetricEvents("metricEventsResource", {
enabled: false,
eventTemplate: {
description: "string",
eventType: "string",
title: "string",
davisMerge: false,
metadatas: [{
metadataKey: "string",
metadataValue: "string",
}],
},
modelProperties: {
alertCondition: "string",
alertOnNoData: false,
dealertingSamples: 0,
samples: 0,
type: "string",
violatingSamples: 0,
signalFluctuation: 0,
threshold: 0,
tolerance: 0,
},
queryDefinition: {
type: "string",
aggregation: "string",
dimensionFilter: {
filters: [{
dimensionKey: "string",
dimensionValue: "string",
operator: "string",
}],
},
entityFilter: {
conditions: {
conditions: [{
operator: "string",
type: "string",
value: "string",
}],
},
dimensionKey: "string",
},
managementZone: "string",
metricKey: "string",
metricSelector: "string",
queryOffset: 0,
},
summary: "string",
eventEntityDimensionKey: "string",
legacyId: "string",
});
type: dynatrace:MetricEvents
properties:
enabled: false
eventEntityDimensionKey: string
eventTemplate:
davisMerge: false
description: string
eventType: string
metadatas:
- metadataKey: string
metadataValue: string
title: string
legacyId: string
modelProperties:
alertCondition: string
alertOnNoData: false
dealertingSamples: 0
samples: 0
signalFluctuation: 0
threshold: 0
tolerance: 0
type: string
violatingSamples: 0
queryDefinition:
aggregation: string
dimensionFilter:
filters:
- dimensionKey: string
dimensionValue: string
operator: string
entityFilter:
conditions:
conditions:
- operator: string
type: string
value: string
dimensionKey: string
managementZone: string
metricKey: string
metricSelector: string
queryOffset: 0
type: string
summary: string
MetricEvents 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 MetricEvents resource accepts the following input properties:
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Event
Template Pulumiverse.Dynatrace. Inputs. Metric Events Event Template - Event template
- Model
Properties Pulumiverse.Dynatrace. Inputs. Metric Events Model Properties - Monitoring strategy
- Query
Definition Pulumiverse.Dynatrace. Inputs. Metric Events Query Definition - Query definition
- Summary string
- The textual summary of the metric event entry
- Event
Entity stringDimension Key - Controls the preferred entity type used for triggered events.
- Legacy
Id string - Config id
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Event
Template MetricEvents Event Template Args - Event template
- Model
Properties MetricEvents Model Properties Args - Monitoring strategy
- Query
Definition MetricEvents Query Definition Args - Query definition
- Summary string
- The textual summary of the metric event entry
- Event
Entity stringDimension Key - Controls the preferred entity type used for triggered events.
- Legacy
Id string - Config id
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - event
Template MetricEvents Event Template - Event template
- model
Properties MetricEvents Model Properties - Monitoring strategy
- query
Definition MetricEvents Query Definition - Query definition
- summary String
- The textual summary of the metric event entry
- event
Entity StringDimension Key - Controls the preferred entity type used for triggered events.
- legacy
Id String - Config id
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - event
Template MetricEvents Event Template - Event template
- model
Properties MetricEvents Model Properties - Monitoring strategy
- query
Definition MetricEvents Query Definition - Query definition
- summary string
- The textual summary of the metric event entry
- event
Entity stringDimension Key - Controls the preferred entity type used for triggered events.
- legacy
Id string - Config id
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - event_
template MetricEvents Event Template Args - Event template
- model_
properties MetricEvents Model Properties Args - Monitoring strategy
- query_
definition MetricEvents Query Definition Args - Query definition
- summary str
- The textual summary of the metric event entry
- event_
entity_ strdimension_ key - Controls the preferred entity type used for triggered events.
- legacy_
id str - Config id
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - event
Template Property Map - Event template
- model
Properties Property Map - Monitoring strategy
- query
Definition Property Map - Query definition
- summary String
- The textual summary of the metric event entry
- event
Entity StringDimension Key - Controls the preferred entity type used for triggered events.
- legacy
Id String - Config id
Outputs
All input properties are implicitly available as output properties. Additionally, the MetricEvents resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing MetricEvents Resource
Get an existing MetricEvents 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?: MetricEventsState, opts?: CustomResourceOptions): MetricEvents
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
event_entity_dimension_key: Optional[str] = None,
event_template: Optional[MetricEventsEventTemplateArgs] = None,
legacy_id: Optional[str] = None,
model_properties: Optional[MetricEventsModelPropertiesArgs] = None,
query_definition: Optional[MetricEventsQueryDefinitionArgs] = None,
summary: Optional[str] = None) -> MetricEvents
func GetMetricEvents(ctx *Context, name string, id IDInput, state *MetricEventsState, opts ...ResourceOption) (*MetricEvents, error)
public static MetricEvents Get(string name, Input<string> id, MetricEventsState? state, CustomResourceOptions? opts = null)
public static MetricEvents get(String name, Output<String> id, MetricEventsState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Event
Entity stringDimension Key - Controls the preferred entity type used for triggered events.
- Event
Template Pulumiverse.Dynatrace. Inputs. Metric Events Event Template - Event template
- Legacy
Id string - Config id
- Model
Properties Pulumiverse.Dynatrace. Inputs. Metric Events Model Properties - Monitoring strategy
- Query
Definition Pulumiverse.Dynatrace. Inputs. Metric Events Query Definition - Query definition
- Summary string
- The textual summary of the metric event entry
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Event
Entity stringDimension Key - Controls the preferred entity type used for triggered events.
- Event
Template MetricEvents Event Template Args - Event template
- Legacy
Id string - Config id
- Model
Properties MetricEvents Model Properties Args - Monitoring strategy
- Query
Definition MetricEvents Query Definition Args - Query definition
- Summary string
- The textual summary of the metric event entry
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - event
Entity StringDimension Key - Controls the preferred entity type used for triggered events.
- event
Template MetricEvents Event Template - Event template
- legacy
Id String - Config id
- model
Properties MetricEvents Model Properties - Monitoring strategy
- query
Definition MetricEvents Query Definition - Query definition
- summary String
- The textual summary of the metric event entry
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - event
Entity stringDimension Key - Controls the preferred entity type used for triggered events.
- event
Template MetricEvents Event Template - Event template
- legacy
Id string - Config id
- model
Properties MetricEvents Model Properties - Monitoring strategy
- query
Definition MetricEvents Query Definition - Query definition
- summary string
- The textual summary of the metric event entry
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - event_
entity_ strdimension_ key - Controls the preferred entity type used for triggered events.
- event_
template MetricEvents Event Template Args - Event template
- legacy_
id str - Config id
- model_
properties MetricEvents Model Properties Args - Monitoring strategy
- query_
definition MetricEvents Query Definition Args - Query definition
- summary str
- The textual summary of the metric event entry
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - event
Entity StringDimension Key - Controls the preferred entity type used for triggered events.
- event
Template Property Map - Event template
- legacy
Id String - Config id
- model
Properties Property Map - Monitoring strategy
- query
Definition Property Map - Query definition
- summary String
- The textual summary of the metric event entry
Supporting Types
MetricEventsEventTemplate, MetricEventsEventTemplateArgs
- Description string
- The description of the event to trigger.
- Event
Type string - Possible Values:
AVAILABILITY
,CUSTOM_ALERT
,CUSTOM_ANNOTATION
,CUSTOM_CONFIGURATION
,CUSTOM_DEPLOYMENT
,ERROR
,INFO
,MARKED_FOR_TERMINATION
,RESOURCE
,SLOWDOWN
- Title string
- The title of the event to trigger.
- Davis
Merge bool - Davis® AI will try to merge this event into existing problems, otherwise a new problem will always be created.
- Metadatas
List<Pulumiverse.
Dynatrace. Inputs. Metric Events Event Template Metadata> - Set of additional key-value properties to be attached to the triggered event.
- Description string
- The description of the event to trigger.
- Event
Type string - Possible Values:
AVAILABILITY
,CUSTOM_ALERT
,CUSTOM_ANNOTATION
,CUSTOM_CONFIGURATION
,CUSTOM_DEPLOYMENT
,ERROR
,INFO
,MARKED_FOR_TERMINATION
,RESOURCE
,SLOWDOWN
- Title string
- The title of the event to trigger.
- Davis
Merge bool - Davis® AI will try to merge this event into existing problems, otherwise a new problem will always be created.
- Metadatas
[]Metric
Events Event Template Metadata - Set of additional key-value properties to be attached to the triggered event.
- description String
- The description of the event to trigger.
- event
Type String - Possible Values:
AVAILABILITY
,CUSTOM_ALERT
,CUSTOM_ANNOTATION
,CUSTOM_CONFIGURATION
,CUSTOM_DEPLOYMENT
,ERROR
,INFO
,MARKED_FOR_TERMINATION
,RESOURCE
,SLOWDOWN
- title String
- The title of the event to trigger.
- davis
Merge Boolean - Davis® AI will try to merge this event into existing problems, otherwise a new problem will always be created.
- metadatas
List<Metric
Events Event Template Metadata> - Set of additional key-value properties to be attached to the triggered event.
- description string
- The description of the event to trigger.
- event
Type string - Possible Values:
AVAILABILITY
,CUSTOM_ALERT
,CUSTOM_ANNOTATION
,CUSTOM_CONFIGURATION
,CUSTOM_DEPLOYMENT
,ERROR
,INFO
,MARKED_FOR_TERMINATION
,RESOURCE
,SLOWDOWN
- title string
- The title of the event to trigger.
- davis
Merge boolean - Davis® AI will try to merge this event into existing problems, otherwise a new problem will always be created.
- metadatas
Metric
Events Event Template Metadata[] - Set of additional key-value properties to be attached to the triggered event.
- description str
- The description of the event to trigger.
- event_
type str - Possible Values:
AVAILABILITY
,CUSTOM_ALERT
,CUSTOM_ANNOTATION
,CUSTOM_CONFIGURATION
,CUSTOM_DEPLOYMENT
,ERROR
,INFO
,MARKED_FOR_TERMINATION
,RESOURCE
,SLOWDOWN
- title str
- The title of the event to trigger.
- davis_
merge bool - Davis® AI will try to merge this event into existing problems, otherwise a new problem will always be created.
- metadatas
Sequence[Metric
Events Event Template Metadata] - Set of additional key-value properties to be attached to the triggered event.
- description String
- The description of the event to trigger.
- event
Type String - Possible Values:
AVAILABILITY
,CUSTOM_ALERT
,CUSTOM_ANNOTATION
,CUSTOM_CONFIGURATION
,CUSTOM_DEPLOYMENT
,ERROR
,INFO
,MARKED_FOR_TERMINATION
,RESOURCE
,SLOWDOWN
- title String
- The title of the event to trigger.
- davis
Merge Boolean - Davis® AI will try to merge this event into existing problems, otherwise a new problem will always be created.
- metadatas List<Property Map>
- Set of additional key-value properties to be attached to the triggered event.
MetricEventsEventTemplateMetadata, MetricEventsEventTemplateMetadataArgs
- Metadata
Key string - Type 'dt.' for key hints.
- Metadata
Value string - no documentation available
- Metadata
Key string - Type 'dt.' for key hints.
- Metadata
Value string - no documentation available
- metadata
Key String - Type 'dt.' for key hints.
- metadata
Value String - no documentation available
- metadata
Key string - Type 'dt.' for key hints.
- metadata
Value string - no documentation available
- metadata_
key str - Type 'dt.' for key hints.
- metadata_
value str - no documentation available
- metadata
Key String - Type 'dt.' for key hints.
- metadata
Value String - no documentation available
MetricEventsModelProperties, MetricEventsModelPropertiesArgs
- Alert
Condition string - Possible Values:
ABOVE
,BELOW
,OUTSIDE
- Alert
On boolNo Data - The ability to set an alert on missing data in a metric. When enabled, missing data samples will contribute as violating samples defined in advanced model properties. We recommend to not alert on missing data for sparse timeseries as this leads to alert spam.
- Dealerting
Samples int - The number of one-minute samples within the evaluation window that must go back to normal to close the event.
- Samples int
- The number of one-minute samples that form the sliding evaluation window.
- Type string
- Possible Values:
AUTO_ADAPTIVE_THRESHOLD
,SEASONAL_BASELINE
,STATIC_THRESHOLD
- Violating
Samples int - The number of one-minute samples within the evaluation window that must violate to trigger an event.
- Signal
Fluctuation double - Controls how many times the signal fluctuation is added to the baseline to produce the actual threshold for alerting
- Threshold double
- Raise an event if this value is violated
- Tolerance double
- Controls the width of the confidence band and larger values lead to a less sensitive model
- Alert
Condition string - Possible Values:
ABOVE
,BELOW
,OUTSIDE
- Alert
On boolNo Data - The ability to set an alert on missing data in a metric. When enabled, missing data samples will contribute as violating samples defined in advanced model properties. We recommend to not alert on missing data for sparse timeseries as this leads to alert spam.
- Dealerting
Samples int - The number of one-minute samples within the evaluation window that must go back to normal to close the event.
- Samples int
- The number of one-minute samples that form the sliding evaluation window.
- Type string
- Possible Values:
AUTO_ADAPTIVE_THRESHOLD
,SEASONAL_BASELINE
,STATIC_THRESHOLD
- Violating
Samples int - The number of one-minute samples within the evaluation window that must violate to trigger an event.
- Signal
Fluctuation float64 - Controls how many times the signal fluctuation is added to the baseline to produce the actual threshold for alerting
- Threshold float64
- Raise an event if this value is violated
- Tolerance float64
- Controls the width of the confidence band and larger values lead to a less sensitive model
- alert
Condition String - Possible Values:
ABOVE
,BELOW
,OUTSIDE
- alert
On BooleanNo Data - The ability to set an alert on missing data in a metric. When enabled, missing data samples will contribute as violating samples defined in advanced model properties. We recommend to not alert on missing data for sparse timeseries as this leads to alert spam.
- dealerting
Samples Integer - The number of one-minute samples within the evaluation window that must go back to normal to close the event.
- samples Integer
- The number of one-minute samples that form the sliding evaluation window.
- type String
- Possible Values:
AUTO_ADAPTIVE_THRESHOLD
,SEASONAL_BASELINE
,STATIC_THRESHOLD
- violating
Samples Integer - The number of one-minute samples within the evaluation window that must violate to trigger an event.
- signal
Fluctuation Double - Controls how many times the signal fluctuation is added to the baseline to produce the actual threshold for alerting
- threshold Double
- Raise an event if this value is violated
- tolerance Double
- Controls the width of the confidence band and larger values lead to a less sensitive model
- alert
Condition string - Possible Values:
ABOVE
,BELOW
,OUTSIDE
- alert
On booleanNo Data - The ability to set an alert on missing data in a metric. When enabled, missing data samples will contribute as violating samples defined in advanced model properties. We recommend to not alert on missing data for sparse timeseries as this leads to alert spam.
- dealerting
Samples number - The number of one-minute samples within the evaluation window that must go back to normal to close the event.
- samples number
- The number of one-minute samples that form the sliding evaluation window.
- type string
- Possible Values:
AUTO_ADAPTIVE_THRESHOLD
,SEASONAL_BASELINE
,STATIC_THRESHOLD
- violating
Samples number - The number of one-minute samples within the evaluation window that must violate to trigger an event.
- signal
Fluctuation number - Controls how many times the signal fluctuation is added to the baseline to produce the actual threshold for alerting
- threshold number
- Raise an event if this value is violated
- tolerance number
- Controls the width of the confidence band and larger values lead to a less sensitive model
- alert_
condition str - Possible Values:
ABOVE
,BELOW
,OUTSIDE
- alert_
on_ boolno_ data - The ability to set an alert on missing data in a metric. When enabled, missing data samples will contribute as violating samples defined in advanced model properties. We recommend to not alert on missing data for sparse timeseries as this leads to alert spam.
- dealerting_
samples int - The number of one-minute samples within the evaluation window that must go back to normal to close the event.
- samples int
- The number of one-minute samples that form the sliding evaluation window.
- type str
- Possible Values:
AUTO_ADAPTIVE_THRESHOLD
,SEASONAL_BASELINE
,STATIC_THRESHOLD
- violating_
samples int - The number of one-minute samples within the evaluation window that must violate to trigger an event.
- signal_
fluctuation float - Controls how many times the signal fluctuation is added to the baseline to produce the actual threshold for alerting
- threshold float
- Raise an event if this value is violated
- tolerance float
- Controls the width of the confidence band and larger values lead to a less sensitive model
- alert
Condition String - Possible Values:
ABOVE
,BELOW
,OUTSIDE
- alert
On BooleanNo Data - The ability to set an alert on missing data in a metric. When enabled, missing data samples will contribute as violating samples defined in advanced model properties. We recommend to not alert on missing data for sparse timeseries as this leads to alert spam.
- dealerting
Samples Number - The number of one-minute samples within the evaluation window that must go back to normal to close the event.
- samples Number
- The number of one-minute samples that form the sliding evaluation window.
- type String
- Possible Values:
AUTO_ADAPTIVE_THRESHOLD
,SEASONAL_BASELINE
,STATIC_THRESHOLD
- violating
Samples Number - The number of one-minute samples within the evaluation window that must violate to trigger an event.
- signal
Fluctuation Number - Controls how many times the signal fluctuation is added to the baseline to produce the actual threshold for alerting
- threshold Number
- Raise an event if this value is violated
- tolerance Number
- Controls the width of the confidence band and larger values lead to a less sensitive model
MetricEventsQueryDefinition, MetricEventsQueryDefinitionArgs
- Type string
- Possible Values:
METRIC_KEY
,METRIC_SELECTOR
- Aggregation string
- Possible Values:
AVG
,COUNT
,MAX
,MEDIAN
,MIN
,PERCENTILE90
,SUM
,VALUE
- Dimension
Filter Pulumiverse.Dynatrace. Inputs. Metric Events Query Definition Dimension Filter - Dimension filter
- Entity
Filter Pulumiverse.Dynatrace. Inputs. Metric Events Query Definition Entity Filter - Use rule-based filters to define the scope this event monitors.
- Management
Zone string - The
legacy_id
of a Management Zone (as provided by the resourcedynatrace.ManagementZoneV2
or the data sourcedynatrace.ManagementZone
) - Metric
Key string - Metric key
- Metric
Selector string - To learn more, visit Metric Selector
- Query
Offset int - Minute offset of sliding evaluation window for metrics with latency
- Type string
- Possible Values:
METRIC_KEY
,METRIC_SELECTOR
- Aggregation string
- Possible Values:
AVG
,COUNT
,MAX
,MEDIAN
,MIN
,PERCENTILE90
,SUM
,VALUE
- Dimension
Filter MetricEvents Query Definition Dimension Filter - Dimension filter
- Entity
Filter MetricEvents Query Definition Entity Filter - Use rule-based filters to define the scope this event monitors.
- Management
Zone string - The
legacy_id
of a Management Zone (as provided by the resourcedynatrace.ManagementZoneV2
or the data sourcedynatrace.ManagementZone
) - Metric
Key string - Metric key
- Metric
Selector string - To learn more, visit Metric Selector
- Query
Offset int - Minute offset of sliding evaluation window for metrics with latency
- type String
- Possible Values:
METRIC_KEY
,METRIC_SELECTOR
- aggregation String
- Possible Values:
AVG
,COUNT
,MAX
,MEDIAN
,MIN
,PERCENTILE90
,SUM
,VALUE
- dimension
Filter MetricEvents Query Definition Dimension Filter - Dimension filter
- entity
Filter MetricEvents Query Definition Entity Filter - Use rule-based filters to define the scope this event monitors.
- management
Zone String - The
legacy_id
of a Management Zone (as provided by the resourcedynatrace.ManagementZoneV2
or the data sourcedynatrace.ManagementZone
) - metric
Key String - Metric key
- metric
Selector String - To learn more, visit Metric Selector
- query
Offset Integer - Minute offset of sliding evaluation window for metrics with latency
- type string
- Possible Values:
METRIC_KEY
,METRIC_SELECTOR
- aggregation string
- Possible Values:
AVG
,COUNT
,MAX
,MEDIAN
,MIN
,PERCENTILE90
,SUM
,VALUE
- dimension
Filter MetricEvents Query Definition Dimension Filter - Dimension filter
- entity
Filter MetricEvents Query Definition Entity Filter - Use rule-based filters to define the scope this event monitors.
- management
Zone string - The
legacy_id
of a Management Zone (as provided by the resourcedynatrace.ManagementZoneV2
or the data sourcedynatrace.ManagementZone
) - metric
Key string - Metric key
- metric
Selector string - To learn more, visit Metric Selector
- query
Offset number - Minute offset of sliding evaluation window for metrics with latency
- type str
- Possible Values:
METRIC_KEY
,METRIC_SELECTOR
- aggregation str
- Possible Values:
AVG
,COUNT
,MAX
,MEDIAN
,MIN
,PERCENTILE90
,SUM
,VALUE
- dimension_
filter MetricEvents Query Definition Dimension Filter - Dimension filter
- entity_
filter MetricEvents Query Definition Entity Filter - Use rule-based filters to define the scope this event monitors.
- management_
zone str - The
legacy_id
of a Management Zone (as provided by the resourcedynatrace.ManagementZoneV2
or the data sourcedynatrace.ManagementZone
) - metric_
key str - Metric key
- metric_
selector str - To learn more, visit Metric Selector
- query_
offset int - Minute offset of sliding evaluation window for metrics with latency
- type String
- Possible Values:
METRIC_KEY
,METRIC_SELECTOR
- aggregation String
- Possible Values:
AVG
,COUNT
,MAX
,MEDIAN
,MIN
,PERCENTILE90
,SUM
,VALUE
- dimension
Filter Property Map - Dimension filter
- entity
Filter Property Map - Use rule-based filters to define the scope this event monitors.
- management
Zone String - The
legacy_id
of a Management Zone (as provided by the resourcedynatrace.ManagementZoneV2
or the data sourcedynatrace.ManagementZone
) - metric
Key String - Metric key
- metric
Selector String - To learn more, visit Metric Selector
- query
Offset Number - Minute offset of sliding evaluation window for metrics with latency
MetricEventsQueryDefinitionDimensionFilter, MetricEventsQueryDefinitionDimensionFilterArgs
MetricEventsQueryDefinitionDimensionFilterFilter, MetricEventsQueryDefinitionDimensionFilterFilterArgs
- Dimension
Key string - Dimension key
- Dimension
Value string - Dimension value
- Operator string
- Possible Values:
CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- Dimension
Key string - Dimension key
- Dimension
Value string - Dimension value
- Operator string
- Possible Values:
CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- dimension
Key String - Dimension key
- dimension
Value String - Dimension value
- operator String
- Possible Values:
CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- dimension
Key string - Dimension key
- dimension
Value string - Dimension value
- operator string
- Possible Values:
CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- dimension_
key str - Dimension key
- dimension_
value str - Dimension value
- operator str
- Possible Values:
CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- dimension
Key String - Dimension key
- dimension
Value String - Dimension value
- operator String
- Possible Values:
CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
MetricEventsQueryDefinitionEntityFilter, MetricEventsQueryDefinitionEntityFilterArgs
- Conditions
Pulumiverse.
Dynatrace. Inputs. Metric Events Query Definition Entity Filter Conditions - no documentation available
- Dimension
Key string - Dimension key of entity type to filter
- Conditions
Metric
Events Query Definition Entity Filter Conditions - no documentation available
- Dimension
Key string - Dimension key of entity type to filter
- conditions
Metric
Events Query Definition Entity Filter Conditions - no documentation available
- dimension
Key String - Dimension key of entity type to filter
- conditions
Metric
Events Query Definition Entity Filter Conditions - no documentation available
- dimension
Key string - Dimension key of entity type to filter
- conditions
Metric
Events Query Definition Entity Filter Conditions - no documentation available
- dimension_
key str - Dimension key of entity type to filter
- conditions Property Map
- no documentation available
- dimension
Key String - Dimension key of entity type to filter
MetricEventsQueryDefinitionEntityFilterConditions, MetricEventsQueryDefinitionEntityFilterConditionsArgs
MetricEventsQueryDefinitionEntityFilterConditionsCondition, MetricEventsQueryDefinitionEntityFilterConditionsConditionArgs
- Operator string
- Possible Values:
CONTAINS_CASE_INSENSITIVE
,CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_INSENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- Type string
- Possible Values:
CUSTOM_DEVICE_GROUP_NAME
,ENTITY_ID
,HOST_GROUP_NAME
,HOST_NAME
,MANAGEMENT_ZONE
,NAME
,PROCESS_GROUP_ID
,PROCESS_GROUP_NAME
,TAG
- Value string
- no documentation available
- Operator string
- Possible Values:
CONTAINS_CASE_INSENSITIVE
,CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_INSENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- Type string
- Possible Values:
CUSTOM_DEVICE_GROUP_NAME
,ENTITY_ID
,HOST_GROUP_NAME
,HOST_NAME
,MANAGEMENT_ZONE
,NAME
,PROCESS_GROUP_ID
,PROCESS_GROUP_NAME
,TAG
- Value string
- no documentation available
- operator String
- Possible Values:
CONTAINS_CASE_INSENSITIVE
,CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_INSENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- type String
- Possible Values:
CUSTOM_DEVICE_GROUP_NAME
,ENTITY_ID
,HOST_GROUP_NAME
,HOST_NAME
,MANAGEMENT_ZONE
,NAME
,PROCESS_GROUP_ID
,PROCESS_GROUP_NAME
,TAG
- value String
- no documentation available
- operator string
- Possible Values:
CONTAINS_CASE_INSENSITIVE
,CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_INSENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- type string
- Possible Values:
CUSTOM_DEVICE_GROUP_NAME
,ENTITY_ID
,HOST_GROUP_NAME
,HOST_NAME
,MANAGEMENT_ZONE
,NAME
,PROCESS_GROUP_ID
,PROCESS_GROUP_NAME
,TAG
- value string
- no documentation available
- operator str
- Possible Values:
CONTAINS_CASE_INSENSITIVE
,CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_INSENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- type str
- Possible Values:
CUSTOM_DEVICE_GROUP_NAME
,ENTITY_ID
,HOST_GROUP_NAME
,HOST_NAME
,MANAGEMENT_ZONE
,NAME
,PROCESS_GROUP_ID
,PROCESS_GROUP_NAME
,TAG
- value str
- no documentation available
- operator String
- Possible Values:
CONTAINS_CASE_INSENSITIVE
,CONTAINS_CASE_SENSITIVE
,DOES_NOT_CONTAIN_CASE_INSENSITIVE
,DOES_NOT_CONTAIN_CASE_SENSITIVE
,DOES_NOT_EQUAL
,DOES_NOT_START_WITH
,EQUALS
,STARTS_WITH
- type String
- Possible Values:
CUSTOM_DEVICE_GROUP_NAME
,ENTITY_ID
,HOST_GROUP_NAME
,HOST_NAME
,MANAGEMENT_ZONE
,NAME
,PROCESS_GROUP_ID
,PROCESS_GROUP_NAME
,TAG
- value String
- no documentation available
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.