6 years ago
Widget for ping monitoring
Hi Everyone!
I'm trying to figure out how to create a widget, that will show the top ten servers that have a ping of above 100ms.
I can make the standard ping widget, but I don't see a...
Hey @Phillip,
As @Cole McDonald noted, you can use a virtual datapoint with the Ping datasource in something like the custom graph widget - here's the expression you would want to use:
if(lt(average,100),unkn,average)
Which says "If the average ping round trip time is less than 100ms, return an unknown value (so it doesn't get graphed,) otherwise return the actual value of the datapoint."
Hope that helps!
Cheers,
Kerry