@@ -125,14 +125,13 @@ the value to the right. Otherwise returns `false`.
125
125
126
126
`==` (equal, case-sensitive)::
127
127
Returns `true` if the values to the left and right of the operator are equal.
128
- Otherwise returns `false`. For strings, matching is case-sensitive. Wildcards
129
- are not supported.
128
+ Otherwise returns `false`. Wildcards are not supported.
130
129
131
130
`:` (equal, case-insensitive)::
132
131
Returns `true` if strings to the left and right of the operator are equal.
133
- Otherwise returns `false`. Matching is case-insensitive and can only be used to
134
- compare strings. Supports <<eql-syntax-wildcards,wildcards>> and
135
- <<eql-syntax-lookup-operators,list lookups>>.
132
+ Otherwise returns `false`. Can only be used to compare strings. Supports
133
+ <<eql-syntax-wildcards,wildcards>> and <<eql-syntax-lookup-operators,list
134
+ lookups>>.
136
135
137
136
[IMPORTANT]
138
137
====
@@ -149,8 +148,7 @@ DSL filter>> that contains a <<query-dsl-match-query,`match`>> query.
149
148
150
149
`!=` (not equal, case-sensitive)::
151
150
Returns `true` if the values to the left and right of the operator are not
152
- equal. Otherwise returns `false`. For strings, matching is case-sensitive.
153
- Wildcards are not supported.
151
+ equal. Otherwise returns `false`. Wildcards are not supported.
154
152
155
153
`>=` (greater than or equal) ::
156
154
Returns `true` if the value to the left of the operator is greater than or equal
@@ -227,23 +225,19 @@ user.name : ("administrator", "system", "network service")
227
225
----
228
226
229
227
`in` (case-sensitive)::
230
- Returns `true` if the value is contained in the provided list. For strings,
231
- matching is case-sensitive.
228
+ Returns `true` if the value is contained in the provided list.
232
229
233
230
`in~` (case-insensitive)::
234
- Returns `true` if the value is contained in the provided list. For strings,
235
- matching is case-insensitive.
231
+ Returns `true` if the value is contained in the provided list.
236
232
237
233
`not in` (case-sensitive)::
238
- Returns `true` if the value is not contained in the provided list. For strings,
239
- matching is case-sensitive.
234
+ Returns `true` if the value is not contained in the provided list.
240
235
241
236
`not in~` (case-insensitive)::
242
- Returns `true` if the value is not contained in the provided list. For strings,
243
- matching is case-insensitive.
237
+ Returns `true` if the value is not contained in the provided list.
244
238
245
239
`:` (case-insensitive)::
246
- Returns `true` if the value is contained in the provided list. Can only be used
240
+ Returns `true` if the string is contained in the provided list. Can only be used
247
241
to compare strings.
248
242
249
243
[discrete]
0 commit comments