Hi everyone, I´m quite new using InfluxDB and telegraf so my appologies in advance in case any question seems silly. I am collecting data using an Arduino UNO and publishing it to a MQTT broker as JSON. The idea is to use telegraf to collect this data and publish it in InfluxDB. I installed everything correctly and when I test the .conf Windows Powersheel says telegraf connected to the broker correctly.
2020-04-16T12:42:26Z I! [inputs.mqtt_consumer] Connected [tcp://broker.hivemq.com:1883]
But when I check the targeted Bucket in the Influx UI it never shows anything. Just the “No Results” screen.
[[outputs.influxdb_v2]]
(##) urls exp: http://127.0.0.1:9999
urls = ["https://us-central1-1.gcp.cloud2.influxdata.com"]
token = "$INFLUX_TOKEN"
organization = "agustinorlando2009@hotmail.com"
bucket = "agustinorlando2009's Bucket"
[[inputs.mqtt_consumer]]
servers = ["tcp://broker.hivemq.com:1883"]
topics = [
"esp/test",
]
(#)topic_tag = "topic"
(#)qos = 0
connection_timeout = "30s"
data_format = "json"
As I could see from most examples here most people use the “outputs.influxdb” and databases plugin instead of the “outputs.influxdb_v2” and buckets. Should I use the “outputs.influxdb” one? If that is the case what urls should I use?
Thanks in advance for your time and help.