| Name |
Type |
Description |
Notes |
| metric |
str |
This is the Apdex metric type. Apdex alert uses <b>SCORE</b> metric. |
|
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]