Hello every1.
Trying to find a way to make a negation regex in an item fetching Windows event logs. The idea was to get all Warning and Error Application event logs except the ones having "AdsmClientService" as their source:
Doesn't work this way. Also tried to put the regex into the second cell:
This also didn't work for me.
Any ideas, any1?
Trying to find a way to make a negation regex in an item fetching Windows event logs. The idea was to get all Warning and Error Application event logs except the ones having "AdsmClientService" as their source:
Code:
eventlog[Application,,"Warning|Error","^(?!.*AdsmClientService).*$"]
Code:
eventlog[Application,"^(?!.*AdsmClientService).*$","Warning|Error"]
Any ideas, any1?
Comment