Knowledge Base >> Alert Notifications

Alert Notifications - Confio Article 1539

Confio Article: 1539 Published: Mar 17 2009 9:50 AM
Version: >=4.3 Topic(s): Ignite Features
Product(s): Ignite
Database(s): All

Overview

Ignite Alerts have the ability to notify prescribed recipients via email and SNMP traps. There are several options available within Ignite to specify when notifications are sent. These options are termed Notification Triggers. Each option is based upon the status of the alert after it is evaluated. The possible statuses are NORMAL, INFO, LOW, MEDIUM, and HIGH and are based upon the thresholds defined when the alert was created. There is also a status of BROKEN that is set when the alert fails due to an error during execution.

 

Notification Triggers

The following are the notification triggers currently supported in Ignite.

 

STATUS_NOT_VISITED

Sends notifications if the alert returns a status that is not NORMAL and is a status that has not been returned since the alert was last NORMAL. This is the default notification trigger.

 

STATUS_NOT_NORMAL

Sends notifications if the alert returns a status that is not NORMAL regardless of the alert's previous status

 

STATUS_CHANGED

Sends notifications if the alert returns a status that is not NORMAL and is different from the previous execution

The default notication trigger for all alerts is STATUS_NOT_VISITED.

 

Changing Notification Triggers

The default notification trigger for all alerts can be changed from the Ignite Management Options page accessed from the Options link on the main page. Select the Advanced Options link and edit the Repository Option named ALERT_NOTIFICATION_TRIGGER. All alerts will inherit this default notification trigger unless the alert's notification trigger has been overridden as described below.

The Ignite web interface currently does not provide the ability to set notification triggers on a specific alert. To change an alert's notification trigger, run the following queries in the Database Query Tool found on the Ignite Management Options page:

SELECT ID,NAME FROM CON_ALERT
note the ID for the alert to be changed

UPDATE CON_ALERT SET NOTIFYWHEN='<trigger>' WHERE ID=<alertId>
where <trigger> is replaced with the apporiate trigger name (STATUS_NOT_VISITED, STATUS_NOT_NORMAL, or STATUS_CHANGED) and <alertId> is the ID found in the first query

Ignite caches alert definitions, so after changing the notification trigger, you must refresh the alert cache. To do this from the Ignite GUI, click on Options at the top and then on Refresh Ignite Alert Cache.

 

Notification Trigger for Broken Alerts

If an error occurs during the execution of an alert, the alert status is set to BROKEN. Notifications are sent if the alert did not have a status of BROKEN from its previous execution (assuming recepients were prescribed for the BROKEN status).