- InfluxDB, als Datenbank
- Telegraf als Collector (inkl. mqtt_input-Plugin)
- Grafana als Visualisierung
1. InfluxDB, als Datenbank
folgende Änderungen/Anpassung:
sudo vi /etc/influxdb/influxdb.conf
enabled = true
bind-address = ":8086"
auth-enabled = false
Nutzer und Datenbank für telegram anlegen:
[cubase:~$] influx
Connected to http://localhost:8086 version 1.2.2
InfluxDB shell version: 1.2.2
>CREATE USER admin WITH PASSWORD '<password>' WITH ALL PRIVILEGES
>CREAT DATABASE telegraf
>exit