I got allot of notifications from my router's WiFi interface as it transitions operational state when there are no clients connected.
I wanted to change the trigger expression to only match when the interface name didn't start with 'wlan' but Zabbix won't accept my changes:
Would anyone have a suggestion on how to achieve this? The '{#SNMPVALUE}' marco expands to 'wlan1 - 5.4GHz' or 'wlan2 - 2.4GHz'.
I wanted to change the trigger expression to only match when the interface name didn't start with 'wlan' but Zabbix won't accept my changes:
Code:
and {"{#SNMPVALUE}".regexp(^wlan)}=0
Comment