Should have worded it better… the service provides statistics about itself in json format via http, on the address http://127.0.0.1:8754/monitor.json
the content looks like this:
SUSE Paste (it’s longish).
I’m only interested in the value of d11_map_size.
I’ve tried the http input like so:
root@flightpi:~# cat /etc/telegraf/telegraf.d/fr24.conf
[[inputs.http]]
urls = ["http://127.0.0.1:8754/monitor.json"]
method = "GET"
name_override = "fr24"
data_format = "json"
Which to my understanding should give me all the data from that json, tagged with the hostname, under a “category” of “fr24” when I use “explore” in grafana… but it’s not there.
Any ideas?