Hi,
I am trying to filter using a REGEX on events from a Windows security log so that only events 529 and 560 come through - but also if the domain name does NOT equal 'Domain' (So I am only logging failed logins to the local machine not loggin into the domain)
I have tried:
[log-filter]
REGEX=EventCode=(560|529)
REGEX=Domain!={Domain)
DEST_KEY = queue
FORMAT = indexQueue
Would I need to add the REGEX for the domain to the end of the event ID REGEX or keep it on a seperate line?
Thanks.