Lets say I have an item that will return either true or false and the history is something like this:
And I have a trigger expression like the below:
I will get a problem created when the "false" value is returned but when the next item comes in as "true" the problem does not resolve. In fact, it never resolves even after repeated "true" values. I fixed one of them by adding a recovery expression but if the text can return more than one value this may not work.
Is this to be expected? From what the Zabbix Wiki says str() should only evaluate the last value. Should I just switch to using count() instead?
My Zabbix Server is 4.2.8.
Code:
true true true true false true true
Code:
{Zabbix Agent:CheckStatus.str(true)}=0
Is this to be expected? From what the Zabbix Wiki says str() should only evaluate the last value. Should I just switch to using count() instead?
My Zabbix Server is 4.2.8.
Comment