Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

ServiceLevelsTimeThreshold

This is the warm-up and cool-down setting to emit or stop alert event after threshold reached.

Properties

Name Type Description Notes
expiry int This is the cooldown period when the active alert misses threshold and stop emitting notification.
time_window int This is the grace period when the threshold is reached and the alert becomes active to emit notification.

Example

from instana_client.models.service_levels_time_threshold import ServiceLevelsTimeThreshold

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

# convert the object into a dict
service_levels_time_threshold_dict = service_levels_time_threshold_instance.to_dict()
# create an instance of ServiceLevelsTimeThreshold from a dict
service_levels_time_threshold_from_dict = ServiceLevelsTimeThreshold.from_dict(service_levels_time_threshold_dict)

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