I have been making great progress in expanding the capability of my monitoring of Windows machines.
I'm successfully monitoring for several eventlog entries, but now I've come across a situation where I want to create a trigger to look for multiple informational levels. I want to trigger on warning or high.
In looking at the example at http://www.zabbix.com/wiki/howto/mon...ndows_eventlog it appears that zabbix sees the levels as bitwise.
Does this mean I can use
Or will I need to define something more like
I'm just looking for the cleanest possible trigger code.
I'm successfully monitoring for several eventlog entries, but now I've come across a situation where I want to create a trigger to look for multiple informational levels. I want to trigger on warning or high.
In looking at the example at http://www.zabbix.com/wiki/howto/mon...ndows_eventlog it appears that zabbix sees the levels as bitwise.
Does this mean I can use
Code:
{Template_Windows_PROgen:eventlog[application].logseverity(6)}=1
Code:
({Template_Windows_PROgen:eventlog[application].logseverity(2)}=1|{Template_Windows_PROgen:eventlog[application].logseverity(4)}=1)