telegraf/plugins/inputs/mqtt_consumer/README.md

57 lines
1.7 KiB
Markdown
Raw Normal View History

2016-02-09 22:03:46 +00:00
# MQTT Consumer Input Plugin
The [MQTT](http://mqtt.org/) consumer plugin reads from
specified MQTT topics and adds messages to InfluxDB.
The plugin expects messages in the
2016-02-18 20:37:36 +00:00
[Telegraf Input Data Formats](https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md).
2016-02-09 22:03:46 +00:00
### Configuration:
```toml
# Read metrics from MQTT topic(s)
[[inputs.mqtt_consumer]]
## MQTT broker URLs to be used. The format should be scheme://host:port,
## schema can be tcp, ssl, or ws.
servers = ["tcp://localhost:1883"]
## MQTT QoS, must be 0, 1, or 2
2016-02-09 22:03:46 +00:00
qos = 0
## Connection timeout for initial connection in seconds
connection_timeout = "30s"
2016-02-09 22:03:46 +00:00
## Topics to subscribe to
2016-02-09 22:03:46 +00:00
topics = [
"telegraf/host01/cpu",
"telegraf/+/mem",
"sensors/#",
]
# if true, messages that can't be delivered while the subscriber is offline
# will be delivered when it comes back (such as on service restart).
# NOTE: if true, client_id MUST be set
persistent_session = false
# If empty, a random client ID will be generated.
client_id = ""
2016-02-09 22:03:46 +00:00
## username and password to connect MQTT server.
2016-02-09 22:03:46 +00:00
# username = "telegraf"
# password = "metricsmetricsmetricsmetrics"
## Optional SSL Config
2016-02-09 22:03:46 +00:00
# ssl_ca = "/etc/telegraf/ca.pem"
# ssl_cert = "/etc/telegraf/cert.pem"
# ssl_key = "/etc/telegraf/key.pem"
## Use SSL but skip chain & host verification
2016-02-09 22:03:46 +00:00
# insecure_skip_verify = false
## Data format to consume.
2017-04-27 21:59:18 +00:00
## Each data format has its own unique set of configuration options, read
## more about them here:
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md
2016-02-09 22:03:46 +00:00
data_format = "influx"
```
### Tags:
- All measurements are tagged with the incoming topic, ie
`topic=telegraf/host01/cpu`