V2/CMS Tutorial/User Tools/Creating Content/Automation/Expression
Contents
Add Expression
Steps
- Go to the Automation tab.
- Select the EXPRESSION tab and then ADD NEW.
- Fill in Name of the Expression.
- Set the Type of the Expression by choosing from the Type dropdown list.
- Immediate (Default): Expression is checked when new values are received for any of the selected Input Measurement.
- Polling: Expression is checked periodically regardless of whether there are new values for any of the selected Input Measurement.
- Choose to enable or disable the expression.
- Construct Expression.
- Select SUBMIT (top right corner) to create the expression.
Construct Expression
This section will guide you on how to construct an expression using the EXPRESSION EDITOR when adding an expression in the CMS. The goal here is to tell Senfi how to detect an event that you want to be notified of/should be responded to.
The Expression Editor is a graph-based Drag & Drop editor.
Arrows coming in from the left of a node indicate its input and those going out from its right indicate its output.
Each Node falls into one of the following categories:
- Asset Identifier
- Input
- Data Transformation
- Logic
- Result
- Event
Data originates from Metric nodes, is transformed by Data Transformation and/or Logic nodes, and eventually consumed by Result & Event nodes.
See Node Type for more information about each Node Type.
Steps
- Create "Metric" nodes, one for each Input metric.
- Attach an "Asset" node (input) to each "Metric".
- Transform data using "Data Transformation" nodes (if necessary).
- Create "Compare" and/or "Logic" nodes. (more information) to construct the necessary logic.
- Logic graph should output a single Boolean (True/False) value.
- "Compare" and "Logic" nodes can be nested.
- More than 2 inputs can be attached to each "Logic" node.
- Attach output of Logic graph to the "Result" node.
- Create "Event" nodes, one for each desired Event.
- Attach the "Result" node (input) to each "Event" node.
Configure Nodes
Each node contains attributes & options which you can modify. To modify the attributes of a node, simply select the node (in the working area). A window will popup to allow you to configure the node.
Aggregate node
This section explains the output of each "Aggregate" node option.
- Sum:: Sum of all input values.
- Count: Number of input values.
- Average: Average of the input values.
- Median: Median value of the input values.
- Max: Largest input value.
- Min: Smallest input value.
- Mode: Input value that appears most often.
- Range: Difference between the largest and smallest input value (max - min).
- Stddev: standard deviation
-
Percentile: percentile.
- This option accepts an additional "Percentile Value" parameter.
-
Every: Outputs true if every input value fulfils the condition.
- This option accepts an additional "Condition" parameter.
-
Any: Outputs true if at least 1 input value fulfils the condition.
- This option accepts an additional "Condition" parameter.
Function node
This section explains the output of each "Function" node option.
- Absolute value of: Absolute value of the input.
- Round to nearest integer: Input rounded to the nearest integer.
- Round up: Input rounded up.
- Round down: Input rounded down.
-
Custom transformation (Map): Input transformed based on a custom mathematical expression.
- This option accepts an additional "mathematical operator" and "value" parameter to form a custom mathematical expression.