All functions listed here are supported in:
The functions are listed without additional information. Click on the function to see the full details.
Function | Description |
---|---|
bitand | The value of "bitwise AND" of an item value and mask. |
bitlshift | The bitwise shift left of an item value. |
bitnot | The value of "bitwise NOT" of an item value. |
bitor | The value of "bitwise OR" of an item value and mask. |
bitrshift | The bitwise shift right of an item value. |
bitxor | The value of "bitwise exclusive OR" of an item value and mask. |
Some general notes on function parameters:
<
>
The value of "bitwise AND" of an item value and mask.
Supported value types: Integer.
Parameter:
Although the comparison is done in a bitwise manner, all the values must be supplied and are returned in decimal. For example, checking for the 3rd bit is done by comparing to 4, not 100.
Examples:
bitand(last(/host/key),12)=8 or bitand(last(/host/key),12)=4 #3rd or 4th bit set, but not both at the same time
bitand(last(/host/key),20)=16 #3rd bit not set and 5th bit set
The bitwise shift left of an item value.
Supported value types: Integer.
Parameter:
Although the comparison is done in a bitwise manner, all the values must be supplied and are returned in decimal. For example, checking for the 3rd bit is done by comparing to 4, not 100.
The value of "bitwise NOT" of an item value.
Supported value types: Integer.
Parameter:
Although the comparison is done in a bitwise manner, all the values must be supplied and are returned in decimal. For example, checking for the 3rd bit is done by comparing to 4, not 100.
The value of "bitwise OR" of an item value and mask.
Supported value types: Integer.
Parameter:
Although the comparison is done in a bitwise manner, all the values must be supplied and are returned in decimal. For example, checking for the 3rd bit is done by comparing to 4, not 100.
The bitwise shift right of an item value.
Supported value types: Integer.
Parameter:
Although the comparison is done in a bitwise manner, all the values must be supplied and are returned in decimal. For example, checking for the 3rd bit is done by comparing to 4, not 100.
The value of "bitwise exclusive OR" of an item value and mask.
Supported value types: Integer.
Parameter:
Although the comparison is done in a bitwise manner, all the values must be supplied and are returned in decimal. For example, checking for the 3rd bit is done by comparing to 4, not 100.