Zabbix 7.2.4., MySQL DB, Ubuntu 24.04 LTS
I can't say when I started having this problem. I guess after the upgrade to 7.2.
To avoid toggling, I often work with {TRIGGER.VALUE}.
Now I have the problem that
no longer works.
The trigger is no longer activated under 10.
works
This senseless trigger goes to PROBLEM, but should not:
So apparently TRIGGER.VALUE is neither 1 nor 0.
Does anyone also have the same problem?
I can't say when I started having this problem. I guess after the upgrade to 7.2.
To avoid toggling, I often work with {TRIGGER.VALUE}.
Now I have the problem that
Code:
({TRIGGER.VALUE}=0 and last(/Server01/vfs.fs.size[D:,pfree])<10) or ({TRIGGER.VALUE}=1 and last(/Server01/vfs.fs.size[D:,pfree])<11)
The trigger is no longer activated under 10.
Code:
last(/Server01/vfs.fs.size[D:,pfree])<10)
This senseless trigger goes to PROBLEM, but should not:
Code:
({TRIGGER.VALUE}<>0 and {TRIGGER.VALUE}<>1 and last(/Server01/vfs.fs.size[D:,pfree])<10)
Does anyone also have the same problem?
Comment