Hello,
I'm trying to make a trigger that checks if an snmp value have been over 0 at one point for instance last 24 hours. So i figured that I will du sum() and test last 24h for 0. If sum() is still 0, then trigger. The issue is that when I apply the template the trigger ignores that it actually do not have enough sample to trigger this issue. If the last value is 0, its seems like it assumes that all no data is also 0, and trigger an alarm.
So, how do I make zabbix take into account that it actually do not have enough samples to trigger?
sum(/template/key[{#SNMPVALUE}],24h) = 0
Thanks!
I'm trying to make a trigger that checks if an snmp value have been over 0 at one point for instance last 24 hours. So i figured that I will du sum() and test last 24h for 0. If sum() is still 0, then trigger. The issue is that when I apply the template the trigger ignores that it actually do not have enough sample to trigger this issue. If the last value is 0, its seems like it assumes that all no data is also 0, and trigger an alarm.
So, how do I make zabbix take into account that it actually do not have enough samples to trigger?
sum(/template/key[{#SNMPVALUE}],24h) = 0
Thanks!
Comment