Greetings,
I am trying to add http response times and ping times devices in my “Internet” map. I want to be able to get a snapshot of ping and http response times to Internet sites like google, yahoo and a few others.
I have a ping one working by adding the following to the device label
concatenate("Ping: ", if(array_element(ping(device_property("FirstAddress")), 0) = -1, "<none>", array_element(ping(device_property("FirstAddress")), 0)), " ms ")
This seems to work pretty good.
Now I want to add http response times in ms to the label also. I know a probe can do this but I can’t seem to find any function that the probes call.
So can I
- Directly get http response time via a function
or - Call a probe to get the response times from a function
Thanks,
Tom
