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.
| Name | Type | Description | Notes |
|---|---|---|---|
| rule | ApplicationAlertRule | ||
| threshold_operator | str | ||
| thresholds | Dict[str, ThresholdConfigRule] |
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)