Hello, I am a beginner in telegraf and infux db and I am trying to send information from a cube but I get the following error.
E! error loading config file plugin inputs.influxdb: line 79: configuration specified the fields [“token” “org” “bucket”], but they weren’t used
configuracion.
[[inputs.influxdb]]
urls = [“http://sitioweb:8086 ”]
token = “$_TOKEN”
org = “org”
bucket = “recepcionData”
[[outputs.mqtt]]
servers = [“tcp://sitioweb:1883”]
topic = “dataInflux/prueba”
qos = 0
username = “publicador”
password = “112323434”
interval = “10s”
metric_batch_size = 1000
data_format = “influx”
NOTE: the server is fine
I appreciate your help
E! error loading config file plugin inputs.influxdb: line 79: configuration specified the fields [“token” “org” “bucket”], but they weren’t used
As the error message suggests, these config fields are not used by this plugin. The inputs.influxdb plugin readme will show you the fields. Note that the plugin does not read data directly from a database. It is for monitoring an influxdb instance itself.
Entiendo muchas gracis por responder ,revisare el archivo
Hello, @jpowers
Is it me or this is duplicated:
Hello, I am a beginner in telegraf and infux db and I am trying to send information from a cube but I get the following error.
E! error loading config file plugin inputs.influxdb: line 79: configuration specified the fields [“token” “org” “bucket”], but they weren’t used
configuracion.
[[inputs.influxdb]]
urls = [“http://sitioweb:8086 ”]
token = “$_TOKEN”
org = “my_org”
bucket = “recepcionData”
[[outputs.mqtt]]
servers = [“tcp://sitioweb:1883”]
topic = “dataInflux/prueba”
qos = 0
use…
Regards