Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.48 KB

File metadata and controls

32 lines (23 loc) · 1.48 KB

RuleWithThresholdInfraAlertRule

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 InfraAlertRule
threshold_operator str
thresholds Dict[str, ThresholdConfigRule]

Example

from instana_client.models.rule_with_threshold_infra_alert_rule import RuleWithThresholdInfraAlertRule

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

# convert the object into a dict
rule_with_threshold_infra_alert_rule_dict = rule_with_threshold_infra_alert_rule_instance.to_dict()
# create an instance of RuleWithThresholdInfraAlertRule from a dict
rule_with_threshold_infra_alert_rule_from_dict = RuleWithThresholdInfraAlertRule.from_dict(rule_with_threshold_infra_alert_rule_dict)

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