In order of evaluation priority. (top to bottom, left to right)
Level | Operator | Description | Associativity |
---|---|---|---|
7 | () |
Priority Expression | left-to-right |
6 | not , + , - |
Unary Logical NOT Unary Positive Unary negative |
right-to-left |
5 | * , / |
Multiple and Divison Operators | left-to-right |
4 | + , - |
Addition and Subtraction Operators | left-to-right |
4 | + |
String Concatenation operator | left-to-right |
3 | < , <= , > , >= |
Relational Operators | left-to-right |
2 | == , != |
Equality Operators | left-to-right |
1 | and , or |
Conditional Expression | left-to-right |
Reserved symbol set: ^
, %
, xor
, =
, +=
, -=
, *=
, /=
, %=
, ++
, --
, ${<text>}
Defines a set or term and/or expressions.
Examples
# Http Status Codes
{200, 201, 202}
# Http respone payloads
{"Created", "Accepted"}
# Handle multiple event types with different keys
{/request_payload, /request_message}
Identifies an expression that will be evaluated at the highest priority level. Priority expression must contain an expression or value, empty parentheses are not supported.
Examples
/is_cool == (/name == "Steven")
Tests the relationship of two numeric values. Note, the operands must be a number or Json Pointer that will resolve to a number.
Syntax
<Number | Json Pointer> < <Number | Json Pointer>
<Number | Json Pointer> <= <Number | Json Pointer>
<Number | Json Pointer> > <Number | Json Pointer>
<Number | Json Pointer> >= <Number | Json Pointer>
Examples
/status_code >= 200 and /status_code < 300
Used to test if two value are/are not equivalent.
Syntax
<Any> == <Any>
<Any> != <Any>
Examples
/is_cool == true
3.14 != /status_code
{1, 2} == /event/set_property
Equality operators can also be used to check if Json Pointer exists or not by checking with 'null'
Syntax
<Json Pointer> == null
<Json Pointer> != null
null == <Json Pointer>
null != <Json Pointer>
Examples
/response == null
null != /response
Used to chain together multiple expressions and/or values.
Syntax
<Any> and <Any>
<Any> or <Any>
not <Any>
Examples
/status_code == 200 and /message == "Hello world"
/status_code == 200 or /status_code == 202
not /status_code in {200, 202}
/response == null
/response != null
A fundamental value that has no children.
- Float (Supports values from 3.40282347 x 10^38 to 1.40239846 x 10^-45)
- Integer (Supports values from -2147483648 to 2147483647)
- Boolean (Supports true or false)
- Json Pointer (See Json Pointer section for details)
- String (Supports Valid Java String characters)
- Null (Supports null check to see if a Json Pointer is present or not)
The String that will be parsed for evaluation. Expression String is the highest level of a Data Prepper Expression. Only supports one Expression String resulting in a return value. Note, an Expression String is not the same as an Expression.
The highest level component of the Expression String.
A generic component that contains a Primary or an Operator. Expressions may contain expressions. An expressions imminent children can contains 0-1 Operators.
- Set
- Priority Expression
- Literal
Hard coded token that identifies the operation use in an Expression.
A Literal used to reference a value within the Event provided as context for the Expression String. Json Pointers are identified by a
leading /
containing one of more of characters from the set a-zA-Z0-9_.@
, delimited by /
. Json Pointers can use an extended character set if wrapped
in double quotes ("
) using the escape character \
. Note, Json Pointer require ~
and /
that should be used as part of the path and
not a delimiter to be escaped.
~0
representing~
~1
representing/
Shorthand Syntax (Regex, \w
= [A-Za-z_]
)
/\w+(/\w+)*
Shorthand Example
/Hello/World/0
Escaped Syntax
"/<Valid String Characters | Escaped Character>(/<Valid String Characters | Escaped Character>)*"
Escaped Example
# Path
# { "Hello - 'world/" : [{ "\"JsonPointer\"": true }] }
"/Hello - 'world\//0/\"JsonPointer\""
DataPrepper has some in-built functions that can be used as operand in an expression. For example
length(/message) > 20
will extract message
field from the event and compares it's length with 20. The value of message
field is expected to be of String type. If the field is not present in the event, null is returned and the function is not applied on it. If the field's value is not String then error is thrown.
Currently, the following functions are supported
length()
- takes one argument of JsonPointer type
- returns the length of the value of the argument passed if it's type is string.
For example,
length(/message)
returns 10 if the keymessage
exists in the event and has the value of"1234567890"
.
hasTags()
- takes at least one argument
- all arguments must be of String type
- returns true if all arguments are present in the event's tags, returns false otherwise
For example, if event has tags "tag1", "tag2", and "tag3",
hasTags("tag1")
orhasTags("tag1", "tag2")
would return true andhasTags("tag4")
andhadTags("tag1", "tag4")
would return false.
getMetadata()
- takes one String literal as argument. This is the key to lookup in the event's metadata. If the key contains "/", then recursive lookup into the metadata attributes is done.
- returns the value corresponding to the argument (key) passed. Value can be of any type.
For example, if metadata contains {"key1": "value2", "key2": 10}, then
getMetadata("key1")
returns "value2", andgetMetadata("key2")
return 10.
contains()
- takes two String arguments. Both should be either string literals or Json Pointers with String values.
- returns true if the second argument is a substring of the first argument. Otherwise, return false.
For example,
contains("abcde", "abcd")
returns true, andcontains("abcde", "xyz")
returns false.
cidrContains()
- The function takes two or more arguments. The first argument is of Json Pointer type representing the key to the IP address to check; the argument(s) that follows is of String type representing CIDR block(s) to check against.
- If the IP address is in the range of any given CIDR blocks, the function evaluates to true; otherwise, the function evaluates to false.
- The function supports both IPv4 and IPv6 addresses.
For example,
cidrContains(/sourceIp,"192.0.2.0/24","10.0.1.0/16")
evaluates to true if the event hassourceIp
field with value "192.0.2.5".
White space is optional surrounding Relational Operators, Regex Equality Operators, Equality Operators and commas. White space is required surrounding Set Initializers, Priority Expressions, Set Operators, and Conditional Expressions.
Operator | Description | White Space Required | ✅ Valid Examples | ❌ Invalid Examples |
---|---|---|---|---|
{} |
Set Initializer | Yes | /status in {200} |
/status in{200} |
() |
Priority Expression | Yes | /a==(/b==200) /a in ({200}) |
/status in({200}) |
in , not in |
Set Operators | Yes | /a in {200} /a not in {400} |
/a in{200, 202} /a not in{400} |
< , <= , > , >= |
Relational Operators | No | /status < 300 /status>=300 |
|
=~ , !~ |
Regex Equality Operators | No | /msg =~ "^\w*$" /msg=~"^\w*$" |
|
== , != |
Equality Operators | No | /status == 200 /status_code==200 |
|
and , or , not |
Conditional Operators | Yes | /a<300 and /b>200 |
/b<300and/b>200 |
, |
Set Value Delimiter | No | /a in {200, 202} /a in {200,202} /a in {200 , 202} |
/a in {200,} |
+ , - |
Add and Subtract Operators | No | /status_code + length(/message) - 2 |
|
* , / |
Multiply and Divide Operators | No | /status_code * length(/message) / 3 |
The event data structure can be nested and have multiple levels of data. JsonPointers can be leveraged within expressions to reference elements throughout an event.