Hi,
My question is how could I create a trigger that alarm if the sum of results in differents hosts > 800
Ex:
Host01 - item STATUS CODE return value 400 (by a script created)
Host02 - item STATUS CODE return value 400 (by a script created)
Host03 - item STATUS CODE return value 200 (by a script created)
Host03 - item STATUS CODE return value 400 (by a script created)
Is it possible ? Something like that ?
My question is how could I create a trigger that alarm if the sum of results in differents hosts > 800
Ex:
Host01 - item STATUS CODE return value 400 (by a script created)
Host02 - item STATUS CODE return value 400 (by a script created)
Host03 - item STATUS CODE return value 200 (by a script created)
Host03 - item STATUS CODE return value 400 (by a script created)
Is it possible ? Something like that ?
Code:
sum { [(host01:Status Code) + (host02:Status Code) + (host03:Status Code) + (host04:Status Code)].last(0)} > 800}
Comment