I am running Zabbix 6.4.13 and getting complaints from the team that alerts can happen that are not actionable. Such as a spike in CPU, or something like that which quickly resolves itself. We switched over from Nagios which had a way in the GUI for alerts to say something like "Check X amount of times over X period of time" before sending out an alert. Insofar as my time with Zabbix I cannot find this option.
An example, let's say I wanted to change this to only alert if it checks twice:
Or
Check to see if the time is out of sync over 5 minutes and check twice:
I can see examples on how to make it check over a period of time but what I'm looking for is how to get checks like these, with an example if at all possible please to not have it send some alerts right way, but to check again X amounts of time.
Thank you
An example, let's say I wanted to change this to only alert if it checks twice:
HTML Code:
min(/Windows by Zabbix agent/perf_counter_en["\Processor Information(_total)\% Privileged Time"],5m)>{$CPU.PRIV.CRIT.MAX}
Check to see if the time is out of sync over 5 minutes and check twice:
HTML Code:
fuzzytime(/Linux by Zabbix agent/system.localtime,{$SYSTEM.FUZZYTIME.MAX})=0
Thank you
Comment