Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.57 KB

File metadata and controls

32 lines (23 loc) · 1.57 KB

RuleWithThresholdApplicationAlertRule

A list of rules where each rule is associated with multiple thresholds and their corresponding severity levels. This enables more complex alert configurations with validations to ensure consistent and logical threshold-severity combinations.

Properties

Name Type Description Notes
rule ApplicationAlertRule
threshold_operator str
thresholds Dict[str, ThresholdConfigRule]

Example

from instana_client.models.rule_with_threshold_application_alert_rule import RuleWithThresholdApplicationAlertRule

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

# convert the object into a dict
rule_with_threshold_application_alert_rule_dict = rule_with_threshold_application_alert_rule_instance.to_dict()
# create an instance of RuleWithThresholdApplicationAlertRule from a dict
rule_with_threshold_application_alert_rule_from_dict = RuleWithThresholdApplicationAlertRule.from_dict(rule_with_threshold_application_alert_rule_dict)

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