Hello, I've been trying to figure out a way to fire a trigger when an item's value has been rising continously for 30 minutes. I know that there's a function monoinc() but it's only for Zabbix 6> and I'm using Zabbix 5. Is there a way to 'replicate' such functionality using basic Zabbix functions?
I've been working around using something like : last() >= max(#30m) but the case is that the value might rise for 15 minutes, then drop to 0 and then start rising again for the next 10 minutes and this trigger might not work.
I don't want to brute force it (check if #1 value was > than #2 AND #2 value > than #3 etc.) but I can't figure it out. Maybe there's a way using the 'Simple Change' from preprocessing?
I've been working around using something like : last() >= max(#30m) but the case is that the value might rise for 15 minutes, then drop to 0 and then start rising again for the next 10 minutes and this trigger might not work.
I don't want to brute force it (check if #1 value was > than #2 AND #2 value > than #3 etc.) but I can't figure it out. Maybe there's a way using the 'Simple Change' from preprocessing?
Comment