I have a trigger setup to watch ping times. Every once in a while, the ping will return a single large value, for example 1000ms, which would create a false alert. So in the trigger I decided to make it check for high ping times, but ignore insanely high ping times:
{Standalone_t:icmppingsec.avg(300)}>120&{Standalon e_t:icmppingsec.last(0)}<500
But for some reason, it still triggers for values > 500!?
I also tried this syntax:
({Standalone_t:icmppingsec.avg(300)}>120)&({Standa lone_t:icmppingsec.last(300)}<500)
And it still triggers for high values. Is this a bug or am I mis-interpreting something in the documentation?
{Standalone_t:icmppingsec.avg(300)}>120&{Standalon e_t:icmppingsec.last(0)}<500
But for some reason, it still triggers for values > 500!?
I also tried this syntax:
({Standalone_t:icmppingsec.avg(300)}>120)&({Standa lone_t:icmppingsec.last(300)}<500)
And it still triggers for high values. Is this a bug or am I mis-interpreting something in the documentation?
Comment