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
Custom payload fields to send additional information in the alert notifications. Can be left empty.
description
str
Description of the mobile app alert configuration. Used as a template for the description of alert/event notifications triggered by this Smart Alert configuration.
enabled
bool
Flag to indicate whether or not the configuration is enabled.
[optional]
grace_period
int
The duration for which an alert remains open after conditions are no longer violated, with the alert auto-closing once the grace period expires.
[optional]
granularity
int
The evaluation granularity used for detection of violations of the defined threshold. Defines the size of the tumbling window used.
[default to 600000]
id
str
ID of this Mobile App Alert Config.
initial_created
int
Unix timestamp representing the time of the initial revision.
[optional]
mobile_app_id
str
ID of the mobile app that this Smart Alert configuration is applied to.
name
str
Name of the mobile app alert configuration. Used as a template for the title of alert/event notifications triggered by this Smart Alert configuration.
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).
Optional flag to indicate whether an Incident is also triggered or not.
[optional]
Example
frominstana_client.models.mobile_app_alert_config_with_rbac_tagimportMobileAppAlertConfigWithRBACTag# TODO update the JSON string belowjson="{}"# create an instance of MobileAppAlertConfigWithRBACTag from a JSON stringmobile_app_alert_config_with_rbac_tag_instance=MobileAppAlertConfigWithRBACTag.from_json(json)
# print the JSON string representation of the objectprint(MobileAppAlertConfigWithRBACTag.to_json())
# convert the object into a dictmobile_app_alert_config_with_rbac_tag_dict=mobile_app_alert_config_with_rbac_tag_instance.to_dict()
# create an instance of MobileAppAlertConfigWithRBACTag from a dictmobile_app_alert_config_with_rbac_tag_from_dict=MobileAppAlertConfigWithRBACTag.from_dict(mobile_app_alert_config_with_rbac_tag_dict)