Greetings,
We are attempting to create a couple of complex triggers and have found that the arithmetic minus (-) is not supported, though the documentation clearly shows it as supported. An example trigger;
This trigger will fail at creation time with an error showing (0-0)<86400 is an invalid expression, where as the following will work;
This is on Zabbix-1.1.4, and it is a blocking issue that needs to get resolved soon.
We are attempting to create a couple of complex triggers and have found that the arithmetic minus (-) is not supported, though the documentation clearly shows it as supported. An example trigger;
Code:
({HOSTNAME:system.uptime.prev()}-{HOSTNAME:system.uptime.last()})<86400
Code:
({HOSTNAME:system.uptime.prev()}+{HOSTNAME:system.uptime.last()})<86400
That correction did the trick.
Comment