Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.14 KB

File metadata and controls

35 lines (26 loc) · 1.14 KB

ThresholdRule

Properties

Name Type Description Notes
aggregation str [optional]
condition_operator str
condition_value float [optional]
metric_name str [optional]
metric_pattern MetricPattern [optional]
rollup int [optional]
window int [optional]

Example

from instana_client.models.threshold_rule import ThresholdRule

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

# convert the object into a dict
threshold_rule_dict = threshold_rule_instance.to_dict()
# create an instance of ThresholdRule from a dict
threshold_rule_from_dict = ThresholdRule.from_dict(threshold_rule_dict)

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