When I use the generic rest template channelDiscovery I get a large amount of channels that are displaying values I am after correctly using the Query
/api.o.j/network%3Brxes%3Btx%3Bcpu%3Btemperature%3Blocation.remote
ie:
Channel | ID | Last Value |
---|---|---|
$["5"]latitude | 6 | -55.23403285432 |
$["6"]longitude | 7 | 122.222342343 |
However when I use my own template:
{ "prtg": { "description" : { "device": "iDirect Web GUI", "query": "/api.o.j/network%3Brxes%3Btx%3Bcpu%3Btemperature%3Blocation.remote", "comment": "No comment" }, "result": [ { "channel": "Latitude", "unit": "degrees", "value": $["5"]["latitude"] }, { "channel": "Longitude", "unit": "degrees", "value": $["5"]["longitude"] }, ] } }
I only get the first digit of the value displayed in PRTG, even when I change the channel decimal places to show all, it rounds to the nearest full number.
Channel | ID | Last Value |
---|---|---|
$["5"]latitude | 2 | -55 |
$["6"]longitude | 3 | 122 |
I'm not sure why this is. Is there anywhere I can view the channelDiscovery template?
Add comment