Health Checks eingebaut

This commit is contained in:
hubobel 2026-01-11 16:58:25 +01:00
parent 61dca5242e
commit 613df62e32
5 changed files with 34 additions and 1 deletions

View file

@ -3,6 +3,11 @@ services:
image: docker.io/telegraf:latest
container_name: telegraf
restart: unless-stopped
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8094" ]
interval: 10s
timeout: 3s
retries: 12
environment:
- MQTT_USERNAME=${MQTT_USERNAME}
- MQTT_PASSWORD=${MQTT_PASSWORD}

View file

@ -64,4 +64,16 @@
[[inputs.mqtt_consumer.json_v2.field]]
path = "tF"
rename = "tF"
type = "float"
type = "float"
[[inputs.mqtt_consumer]]
servers = ["tcp://mqtt5:1883"]
topics = ["daten/status/power/+"]
username = "${MQTT_USERNAME}"
password = "${MQTT_PASSWORD}"
data_format = "value"
data_type = "float"
name_override = "power"
topic_tag = "topic"