Compare commits

...

2 Commits

Author SHA1 Message Date
Eric FELIXINE
81de240b40 fix: ENABLE_INFLUX bug - accepter true/yes/on (pas seulement 1) 2026-05-05 16:20:32 -04:00
Eric FELIXINE
06249f67d6 fix: Stabilisation pré-démo - Simulator host-mode, Pulsar disabled, config patch 2026-05-05 15:42:57 -04:00
3 changed files with 184728 additions and 5 deletions

View File

@@ -30,10 +30,10 @@ services:
# Databases
- ENABLE_INFLUX=true
- INFLUX_URL=http://smart-city-influxdb:8086
# Pulsar (Active - main ingestion)
- ENABLE_PULSAR=true
- PULSAR_HOST=smart-city-pulsar
- PULSAR_PORT=6650
# Pulsar (Disabled for demo stability - was causing 0.0.0.0:0 errors)
- ENABLE_PULSAR=false
# - PULSAR_HOST=smart-city-pulsar
# - PULSAR_PORT=6650
# Redpanda (Disabled - troubleshooting)
- ENABLE_REDPANDA=false
- REDPANDA_BROKERS=smart-city-redpanda:9092

View File

@@ -83,7 +83,7 @@ REDPANDA_PORT = int(os.environ.get("REDPANDA_PORT", "8082"))
REDPANDA_BASE = f"http://{REDPANDA_HOST}:{REDPANDA_PORT}"
# InfluxDB config
ENABLE_INFLUX = os.environ.get("ENABLE_INFLUX", "1") == "1"
ENABLE_INFLUX = os.environ.get("ENABLE_INFLUX", "1").lower() in ("1", "true", "yes", "on")
INFLUX_URL = os.environ.get("INFLUX_URL", "http://smart-city-influxdb:8086") # InfluxDB v2 sur smartcity-shared
INFLUX_ORG = os.environ.get("INFLUX_ORG", "digitribe")
INFLUX_BUCKET = os.environ.get("INFLUX_BUCKET", "iot_data")

184723
simulator_live.log Normal file

File diff suppressed because it is too large Load Diff