PING time displayed in the device label?

I would like to display the PING time in the label. How can this be done? Even better would be to have a 5 minute average of the PING time displayed.

Put this on appearance… not exactly what you are looking for…
[ping(Device_property(“FirstAddress”)]


Although not what your looking for as well but a probe that will complain if latency goes above 200.
Create a new function…
Available: ping(device_property(“FirstAddress”)) >= 0
Error: if(array_element(ping(device_property(“FirstAddress”)), 0) < 200, “”, “RTT > 200ms”)
Value: ping(device_property(“FirstAddress”))

Hi lebowski

I cant get the the label to work , i am using dude 3.6 .

any suggestions ?

DOH, i could swear that worked… here is the fixed ping notice the correct lower case device_property and the extra brackets.

[ping(device_property(“FirstAddress”))]

thank you

thank you very useful