Compare commits
2 Commits
8642ed7001
...
81de240b40
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
81de240b40 | ||
|
|
06249f67d6 |
@@ -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
|
||||
|
||||
@@ -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
184723
simulator_live.log
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user