Add initial MQTT scrubber service scaffold

This commit is contained in:
2026-03-12 18:12:16 +01:00
parent 957b2c41b3
commit 464f4c3ec4
22 changed files with 4150 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"mqtt": {
"broker": "tcp://127.0.0.1:1883",
"username": "",
"password": "",
"client_id": "mqqt-scrubber",
"topics": [
"tele/+/SENSOR",
"tele/+/STATE"
],
"qos": 0
},
"influx": {
"url": "http://127.0.0.1:8181",
"database": "home",
"token": "",
"precision": "ns"
},
"app": {
"batch_size": 200,
"buffer_size": 1000,
"flush_interval": "10s",
"flush_timeout": "10s",
"log_level": "info",
"health_address": ":8080"
}
}