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
- Create condition to check whether the give list of fields exist in the event
- Add Tests for the created condition
- Add Documentation for the created condition
- closes - elastic#6285
Need added filter conditions to filter on events that do or do not have specific fields present in the events.
Logstash Example to be ported to winlogbeats:
if ![field] {
drop {}
}
or
if [field]{
drop {}
}
Current workaround is to do a regex with .* or a not regex .*.
The text was updated successfully, but these errors were encountered: