Siva_
(Siva)
December 14, 2018, 6:32pm
1
Hi community,
How can i use the eventdata param1 to filter in winlogbeat?
currently, I am using regex on the message but hoping to avoid it for performance.
processors:
- drop_event:
when:
not:
regexp:
message: "The Citrix Universal Printing Service*"
bigphil
(Philip Nunn)
December 15, 2018, 3:15am
2
This is the field name that contains the data in param1: event_data.param1
Siva_
(Siva)
December 16, 2018, 2:44am
3
Thank you!
winlogbeat.event_logs:
- name: System
provider:
- Service Control Manager
event_id: 7036, 7031
tags: ["citrix","ups"]
ignore_older: 5m
processors:
- drop_event:
when:
not:
equals:
event_data.param1: "Citrix Universal Printing Service"
system
(system)
Closed
January 13, 2019, 2:44am
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.