You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If more filtering rules are defined, then they are executed in the order they are defined. The initial event is passed to the first filtering rule and what results from it is passed to the second filtering rule until all the filtering rules are applied. The condition that is used in the following filtering rules is running against the event that is received as input and it might defer from the original event.
Condition types:
equals
contains
regexp
range
and
or
not
Equals
Accepts only integers and strings.
equals:
type: process
equals:
proc.name: test
equals:
http.response.code: 200
Contains
Accepts only strings.
contains:
proc.name: topbeat
Regexp
Accepts only strings that include a regular expression.
You can specify a list of conditions under each type and they are combined with and. For example, the following conditions selects the `type=process and proc.name=test:
Related to #451
Condition types:
Equals
Accepts only integers and strings.
Contains
Accepts only strings.
Regexp
Accepts only strings that include a regular expression.
Range
Accepts only integers and floats.
Combine two conditions
You can specify a list of conditions under each type and they are combined with
and
. For example, the following conditions selects the `type=process and proc.name=test:OR/AND/NOT operators
where
<condition>
can contain any of the actions vailable including otheror
,not
,and
.Required changes:
.
in the condition Use dots in field names and make filters pluggable #1623The text was updated successfully, but these errors were encountered: