feat: Add Redpanda Console, Pulsar Distribution Service, and Grafana Dashboards

- Add Redpanda Console service (port 28080, Traefik integration)
- Add Pulsar Distribution Service (Pulsar -> Brokers)
- Create Grafana dashboards for Redpanda, Pulsar, and Smart City Ingestion
- Configure Prometheus targets for Pulsar and Redpanda metrics
- Fix FROST URL in distribution service
- Create session resume for 2026-05-05
This commit is contained in:
Eric FELIXINE
2026-05-05 13:49:00 -04:00
parent ca1e037347
commit 8642ed7001
13 changed files with 710 additions and 53 deletions

View File

@@ -0,0 +1,24 @@
version: '3.8'
services:
pulsar-manager:
image: apachepulsar/pulsar-manager:v0.4.0
container_name: smart-city-pulsar-manager
restart: unless-stopped
networks:
- traefik-public
- smartcity-shared
ports:
- "7750:7750"
environment:
- SPRING_APPLICATION_JSON={"server":{"port":7750},"pulsar":{"cluster":"standalone","serviceUrl":"pulsar://smart-city-pulsar:6650","webServiceUrl":"http://smart-city-pulsar:8080"},"spring":{"datasource":{"driverClassName":"herddb.jdbc.Driver","url":"jdbc:herddb:server:localhost:7000?server.start=true&server.base.dir=dbdata","initialization-mode":"never"},"logging":{"level":{"org":{"apache":"INFO"}}},"redirect":{"host":"localhost","port":7750}}
labels:
- "traefik.enable=true"
- "traefik.http.routers.pulsar-manager.rule=Host(`pulsar.digitribe.fr`)"
- "traefik.http.routers.pulsar-manager.entrypoints=websecure"
- "traefik.http.routers.pulsar-manager.tls=true"
- "traefik.http.services.pulsar-manager.loadbalancer.server.port=7750"
networks:
traefik-public:
external: true
smartcity-shared:
external: true