Notification Configuration File
If you have any Notification rules set in IguanaX, these notification configurations are stored in the notifications directory:
<working directory>/config/settings/notifications.json
The notification directory will contain a notifications.json file to store your configurations, including the component configured to send the notifications, the components status (on/off), and each notification rule you have set.
It may look like:
{
"component_id": "IguanaXNot_tKIItRIQJALmaY",
"is_on": false,
"rules": [
{
"limit": 6,
"priority": "low",
"tags": [
"*"
],
"threshold": "1",
"type": "error_count"
},
{
"limit": 6,
"priority": "low",
"tags": [
"#prod"
],
"threshold": "360",
"type": "inactive_time"
},
{
"limit": 6,
"priority": "low",
"tags": [
"#prod"
],
"threshold": "10",
"type": "queue_count"
}
]
}
Â