Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 966 Bytes

File metadata and controls

29 lines (20 loc) · 966 Bytes

ApdexAlertRule

Properties

Name Type Description Notes
metric str This is the Apdex metric type. Apdex alert uses <b>SCORE</b> metric.

Example

from instana_client.models.apdex_alert_rule import ApdexAlertRule

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

# convert the object into a dict
apdex_alert_rule_dict = apdex_alert_rule_instance.to_dict()
# create an instance of ApdexAlertRule from a dict
apdex_alert_rule_from_dict = ApdexAlertRule.from_dict(apdex_alert_rule_dict)

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