Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

ErrorsApplicationAlertRule

Properties

Name Type Description Notes
metric_name str

Example

from instana_client.models.errors_application_alert_rule import ErrorsApplicationAlertRule

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

# convert the object into a dict
errors_application_alert_rule_dict = errors_application_alert_rule_instance.to_dict()
# create an instance of ErrorsApplicationAlertRule from a dict
errors_application_alert_rule_from_dict = ErrorsApplicationAlertRule.from_dict(errors_application_alert_rule_dict)

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