Hi All,
I require some assistance with the following situation -
I need alerts when value 1 doesn't contain value 2.
These values are both IP addresses, but value 1 may be a single IP address, or more than one.
Both of these values are currently being sent to Zabbix via a script on another server, sending values via zabbix_sender.
These 2 values are stored on a bunch of hosts.
When both value 1 and value 2 are single IP addresses, I can do what I need to with the <> operator in a trigger expression like so -
Code:
last(/Script/IPCell)<>last(/Script/henodeb)
However, this fails when
Code:
henodeb
I tried using the find (https://www.zabbix.com/documentation...s/history#find) history function however that doesn't seem to take a item as the pattern
I suppose I could create more items when value 1 has more than one IP address, however that means that the trigger expression would take that into account and I'm not sure how that would work.
Does anyone have any suggestions on how this could be done?
Thanks in advance
Comment