I can't find a example for eventlog with regexp. name,<regexp> - what is the regexp trying to match? is the regexp used to match the Event ID general tab data?
eventlog[name,<regexp>,<severity>,<source>,<eventid>,<maxli nes>,<mode>]
name - name of event log
regexp - regular expression describing the required pattern
or is the regexp used here to something else?
Event ID: 12345
Example of a general tab data is
"The Desktop Window Manager has exited with code (0xd00002fe)"
And how should I use the regexp.
Is it like
eventlog[Application,(.*1234.*),,Information,,123]
or
eventlog[Application,regexp(.*1234.*),,Information,,123]
eventlog[name,<regexp>,<severity>,<source>,<eventid>,<maxli nes>,<mode>]
name - name of event log
regexp - regular expression describing the required pattern
or is the regexp used here to something else?
Event ID: 12345
Example of a general tab data is
"The Desktop Window Manager has exited with code (0xd00002fe)"
And how should I use the regexp.
Is it like
eventlog[Application,(.*1234.*),,Information,,123]
or
eventlog[Application,regexp(.*1234.*),,Information,,123]
Comment