Environment References
Environment references point to special environment variables defined during the evaluation of an expression. For example, environment references may be used in event filter expression: there are context
environment variable pointing to the context when the event occurred, and level
variable containing its severity (details are here).
![]() | Environment variables are provided by the system. There is no way to define new environment variables or change their values. |
References to environment variables are formatted like this:
env/xxx
: env
is a predefined string. It is used to indicate the schema being used. In this case, it indicates that the reference must be resolved as an environment variable. xxx
is the name of the variable. An environment variable isn't the same as a context variable, so it never has a path. It refers to the currently running operation -- you just write its name.
![]() | Example:
This environment variable contains the severity level of the current event being processed. This example may not seem very useful at this point: to make it really useful, you have to put it in an Iotellect Expression, which we'll discuss in the next chapter. |
![]() | In this documentation, description of any expression's evaluation environment includes a list of environment variables available during its evaluation process. |
Standard Environment Variables
Environment variables that are defined in every environment:
Variable Name | Description | |
count | Number of calculations performed in the current environment. Equals to zero during the first calculation, and increments by one on each calculation. | |
![]() | For example, if your expression referring | |
previous | Result of the previous calculation in the current environment. | |
time | Used in chart dataset expressions (see Event-based Data and Variable-based Data properties of the Chart component). Returns timestamp of the currently processed data point (time when event occurred of variable change time). | |
![]() | time and previousTime environment variables may be used to create time charts of values these are increased on each measurement. For example, if
| |
previousTime | Also used in chart dataset expressions. Returns timestamp of the previous data point or NULL for the first data point. | |
alias | Available in Web UI Dashboard binding expressions, and most other expression resolution environments of dashboard properties. Returns the alias part of the URL the user followed to access the dashboard. For example, if the user accessed the dashboard with the URL |
Was this page helpful?