Telegraf exec, json and Prometheus

Hello there, on my telegraf.conf I have an inputs.exec that runs a script (speed test for the internet connection).

[[inputs.exec]]
commands = ["/usr/local/bin/speedtest-cli --json"]
timeout = “1m”
interval = “60m”
name_suffix = “_speedtest”
data_format = “json”

It is working (telegraf is running the script), and if I send the output to a file I get data like this, as expected.
{“fields”:{“bytes_received”:85166856,“bytes_sent”:77045760,“download”:66258521.91383733,“ping”:25.834,“server_d”:449.25328927251144,“server_latency”:25.834,“upload”:61521857.66314547},“name”:“exec_speedtest”,“tags”:{“host”:“raspy”},“timestamp”:1617732926}

However, on Prometheus I dont see any data (I do see the fields exec_speedtest_download for example, but not the data.)

Is there a way to send data (json) from a executed scritp directed to Prometheus?