Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.51 KB

File metadata and controls

32 lines (23 loc) · 1.51 KB

RuleWithThresholdWebsiteAlertRule

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

Example

from instana_client.models.rule_with_threshold_website_alert_rule import RuleWithThresholdWebsiteAlertRule

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

# convert the object into a dict
rule_with_threshold_website_alert_rule_dict = rule_with_threshold_website_alert_rule_instance.to_dict()
# create an instance of RuleWithThresholdWebsiteAlertRule from a dict
rule_with_threshold_website_alert_rule_from_dict = RuleWithThresholdWebsiteAlertRule.from_dict(rule_with_threshold_website_alert_rule_dict)

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