Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.24 KB

File metadata and controls

36 lines (27 loc) · 1.24 KB

InfraAlertRule

Properties

Name Type Description Notes
aggregation str [optional]
alert_type str
cross_series_aggregation str [optional]
entity_type str [optional]
metric_group_by List[str] [optional]
metric_name str
metric_tag_filter_expression TagFilterExpressionElement [optional]
regex bool [optional]

Example

from instana_client.models.infra_alert_rule import InfraAlertRule

# TODO update the JSON string below
json = "{}"
# create an instance of InfraAlertRule from a JSON string
infra_alert_rule_instance = InfraAlertRule.from_json(json)
# print the JSON string representation of the object
print(InfraAlertRule.to_json())

# convert the object into a dict
infra_alert_rule_dict = infra_alert_rule_instance.to_dict()
# create an instance of InfraAlertRule from a dict
infra_alert_rule_from_dict = InfraAlertRule.from_dict(infra_alert_rule_dict)

[Back to Model list] [Back to API list] [Back to README]