From the Zabbix manual, the expression of calculated elements follows the form
func(<key>|<hostname:key>,<parameter1>,<parameter2>,...)
This is great for computing using functions on a single element, such as
max("temp1",120)
How should the min () function be applied over 3 different elements so that it returns the lowest of them?
source share