The Trigger Action compares the contents of a field from an incoming Event with predefined rules, when the rules match, an Event emit is triggered.
Use the Trigger Action to ignore Events that don't require processing; to send Events downstream for additional analysis; to further process events that are sent from a particular application.
Features
Trigger an Event emit based on the following:
regex
: The contents of a field at a defined path match a defined regular expression.!regex
: The contents of a field at a defined path do not match a defined regular expression.field<value
: The number in a field at a defined path is less than a specified value.field<=value
: The number in a field at a defined path is less than or equal to a specified value.field==value
: The number in a field at a defined path is equal to a specified value.field!=value
: The number in a field at a defined path is not equal to a specified value.field>=value
: The number in a field at a defined path is greater than or equal to a specified value.field>value
: The number in a field at a defined path is greater than a specified value.in
: The value specified is contained in a field at a defined path.not in
: The value specified is not contained in a field at a defined path.
Regex patterns are matched case-insensitive.
The value can be a single value or an array of values. In the case of an array, all items must be strings, and if one or more values match, then the rule matches.
Configuration Options
rules
: The rules array contains sets oftype
,path
andvalue