Files
smart-city-digital-twin-mar…/prometheus.yml
Eric FELIXINE 8642ed7001 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
2026-05-05 13:49:00 -04:00

46 lines
1.1 KiB
YAML

global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
# Mosquitto MQTT Broker
- job_name: 'mosquitto'
static_configs:
- targets: ['mosquitto-exporter:9234']
scrape_interval: 10s
# Orion-LD (FIWARE)
- job_name: 'orion-ld'
static_configs:
- targets: ['fiware-gis-quickstart-orion-1:1026']
metrics_path: '/metrics'
scrape_interval: 10s
# FROST-Server (SensorThings)
- job_name: 'frost-server'
static_configs:
- targets: ['frost_http-web-1:8080']
metrics_path: '/FROST-Server/metrics'
scrape_interval: 10s
# Stellio NGSI-LD
- job_name: 'stellio'
static_configs:
- targets: ['stellio:8080']
metrics_path: '/metrics'
scrape_interval: 10s
# Redpanda Metrics (Admin API)
- job_name: 'redpanda'
static_configs:
- targets: ['smart-city-redpanda:9644']
metrics_path: '/metrics'
scrape_interval: 10s
# Pulsar Metrics (Admin API)
- job_name: 'pulsar'
static_configs:
- targets: ['smart-city-pulsar:8080']
metrics_path: '/metrics'
scrape_interval: 10s