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...
On 11/1/2019 at 7:59 AM, Cole McDonald said:You would bring in the ping as a "do not display" value, then make a virtual datapoint that uses an if() to evaluate the >100 and return a NAN for the false condition.
OK, I understood the first part. I'm not sure on the expression for the second part. I'm not familiar with the complex datapoint syntax for the expression. Should it look like if(maxrtt>100, 1, NaN)?