fix: Traefik routing OpenRemote/Ditto + QuantumLeap config (2026-05-08)
This commit is contained in:
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user