Alert Examples

This article provides some non-trivial alert configurations that can be used as a reference for creating your own custom alerts.

Trigger Expression Examples

Here are some real-life examples of alert trigger expressions:

Expression

Notes

select({}, 'ifAdminStatus', 'ifIndex', 1) == 2

This expression will take the Default Table (that is variable's value in the case Variable Trigger), find a record that has its ifIndex field equal to 1, and trigger the alert if value of ifAdminStatus field in this record equals to 2.

{connectionStatus} == 0 && {genericProperties$offlineAlert}

This expression is used by Device Offline Alert. It triggers the alert if connectionStatus field of the monitored variable (actually Device status variable) equals to 0 (Offline), and value of offlineAlert field of genericProperties (Generic Properties) variable is true (i.e. Offline Alert is enabled for this  device).

{temperature} > 27.00 && dayOfWeek(now()) != 0 && dayOfWeek(now()) != 6 && hour(now()) > 9 && hour(now()) < 18

This alert will be triggered if temperature goes over 27 degrees on Monday to Friday, 9AM to 6PM.

contains({message}, "FAILED LOGIN") &&  {facility} == 4 && {level} == 5

This is an Event Trigger's expression that activates an alert when message field of the event data contains "FAILED LOGIN" substring, facility field equals to 4, and level field equals to 5.

select({.:settingsStatus}, 'duration', 'setting', 'mySqlQuery') > 500

This expression analyzes last execution time of an SQL query named mySqlQuery that is periodically executed by database device driver. If query execution time exceeds 500 milliseconds, an alert will raise.

The same expression can be used to analyze I/O duration (i.e. read/write time) of any device variable.

Impact Warning Alert

Let's assume that our hardware device is a forklift controller that may generate Impact event when forklift collides with some obstacle. This event contains Level field that represents impact level, higher levels indicate more severe impacts.

The Impact Warning alert has a single Event Trigger which fires due to the Impact event in the Data Terminal context if the Integer level field in event data is greater than 50 (i.e. alert is raised only for severe impacts) .

Alert Info

Field

Value

Alert Name

impact_warning

Alert Description

Impact Warning

Alert is Enabled

TRUE

Message

Severe impact occurred to the vehicle

Triggers Activated By Events

Context Mask

Event

Filter Expression

users.admin.devices.forklift

impact

{level} > 50

Alert Notifications

Field

Value

Notify owner if connected to the server

TRUE

Acknowledgement is required

FALSE

Notification sound

<Not set>

Send e-mail to owner

TRUE

E-mail recipients

NONE

Additional e-mail recipients


Several Hardware Devices in Trouble

This complex example shows how integration of two powerful features, alerts and queries, may be helpful to detect error conditions that involve several Device.

Assuming that ten temperature sensors are connected to Iotellect Server and owned by user john. The Data Terminal context of every sensor has a Temperature variable (variable name: temperature) whose value has an Integer field, Celsius, containing the temperature in Celsius. Suppose the temperature of every individual sensor is not critical, but if three or more sensors report temperature greater than 100 degrees this may lead to problems in the future, and an alert should be raised to let the operators know there's a problem.

We'll use a query that helps to find all thermometers reporting temperature over than 100 degrees:

SELECT * FROM users.john.devices.*:temperature WHERE temperature$celsius > 100

This query returns a table (Data Table) containing one record per every sensor showing high temperature.

We can execute the above query by calling the executeQuery function from the Root context and passing the query text to it as an input parameter. So the idea is to set up an alert with a trigger that periodically executes this query and checks the number of records in its output. If the number is greater than three, the trigger fires.

Variable triggers may not be used to check function output directly, but here we must check a function's output -- executeQuery is a function. As covered above, alerts can be triggered in two ways -- when an event (so-called "event triggers") happens, or according to the value of some variable ("variable trigger"). For our example, we'll use a "variable" trigger, but we'll hack it a little bit. A variable trigger always has a context, a variable and an expression. Now, expressions can actually invoke functions.

So we're going to create an alert which has a meaningless context, a meaningless variable (which is still valid for that context), and a very meaningful expression. This expression won't even refer to the context and variable of the alert. We care only about the expression in this case, because it causes the query to be executed for us. The other parts (context and variable) are just placeholders. As placeholders, we'll use the "" (root) context and the version read-only variable, containing the server version.

Out alert will be raised when the expression evaluates to true.

To access the number of records contained in the output of the executeQuery function we will use the records property (see References for details about the reference resolving process). The final expression that will check if there are more than three thermometers registering a temperature over 100 degrees Celsius appears as follows:

{:executeQuery("SELECT * FROM users.john.devices.*:temperature WHERE temperature$celsius > 100")#records} >= 3

How it works:

  • The trigger periodically polls the Root context for the value of the version variable.

  • This value is discarded as it is not used in trigger expression.

  • The expression is evaluated. During evaluation, since there is no indicated reference schema, the reference is resolved as a Standard Reference. The "Execute Query" function of the root context is executed and returns the number of rows in the result. This number is compared to the numeric constant "3". The resulting expression returns TRUE if it is greater or equal to three and FALSE otherwise.

  • If the expression returns TRUE, the trigger raises the alert and all notifications are sent.

Alert Info

Field

Value

Alert Name

temperature_warning

Alert Description

Temperature Warning

Alert is Enabled

TRUE

Message

Three or more sensors show high temperature

Variable Triggers

Context Mask

Variable

Expression

Monitor State Changes

Check Period (seconds)

Level

"" (empty string - Root context)

version

{:executeQuery("SELECT * FROM users.john.deviceservers.sensors.devices.*:temperature WHERE temperature$celsius > 100")#records} >= 3

FALSE

10

Error

Alert Notifications

Field

Value

Notify owner if connected to the server

TRUE

Acknowledgement is required

FALSE

Notification sound

<Not set>

Send e-mail to owner

TRUE

E-mail recipients

NONE

Additional e-mail recipients


Additional examples may be found in the Triggers section.

Was this page helpful?