fix: Traefik routing OpenRemote/Ditto + QuantumLeap config (2026-05-08)

This commit is contained in:
Eric FELIXINE
2026-05-08 03:11:13 -04:00
parent dfaa240d5a
commit ae153c4e5e
16 changed files with 1224 additions and 2 deletions

View File

@@ -9,18 +9,56 @@
flush_interval = "10s"
flush_jitter = "0s"
# Input: MQTT Consumer
# Input: MQTT Consumer - EMQX
[[inputs.mqtt_consumer]]
servers = ["tcp://emqx_emqx_1:1883"]
topics = [
"airquality/#",
"traffic/#",
"parking/#",
"noise/#",
"weather/#",
"light/#",
"sensor/#",
"smartcity/#"
]
data_format = "json"
qos = 0
# Input: MQTT Consumer - Mosquitto
[[inputs.mqtt_consumer]]
servers = ["tcp://smart-city-mosquitto:1883"]
topics = [
"airquality/#",
"traffic/#",
"parking/#",
"noise/#",
"weather/#",
"light/#",
"sensor/#",
"smartcity/#"
]
data_format = "json"
qos = 0
# Input: MQTT Consumer - BunkerM (with auth)
[[inputs.mqtt_consumer]]
servers = ["tcp://bunkerm_bunkerm_1:1900"]
topics = [
"airquality/#",
"traffic/#",
"parking/#",
"noise/#",
"weather/#",
"light/#",
"sensor/#",
"smartcity/#"
]
data_format = "json"
qos = 0
username = "bunker"
password = "bunker"
# Output: InfluxDB v2
[[outputs.influxdb_v2]]
urls = ["http://smart-city-influxdb:8086"]