You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
[optional]
severity
int
The severity of the alert when triggered, which is either 5 (Warning), or 10 (Critical).
frominstana_client.models.log_alert_config_with_metadataimportLogAlertConfigWithMetadata# TODO update the JSON string belowjson="{}"# create an instance of LogAlertConfigWithMetadata from a JSON stringlog_alert_config_with_metadata_instance=LogAlertConfigWithMetadata.from_json(json)
# print the JSON string representation of the objectprint(LogAlertConfigWithMetadata.to_json())
# convert the object into a dictlog_alert_config_with_metadata_dict=log_alert_config_with_metadata_instance.to_dict()
# create an instance of LogAlertConfigWithMetadata from a dictlog_alert_config_with_metadata_from_dict=LogAlertConfigWithMetadata.from_dict(log_alert_config_with_metadata_dict)