projetPulumi/prometheus.yml
2024-11-26 15:29:30 +01:00

19 lines
438 B
YAML

global:
scrape_interval: 15s
scrape_configs:
# Scruter le PostgreSQL Exporter
- job_name: 'postgres_exporter'
static_configs:
- targets: ['postgres_exporter:9187'] # Cible du PostgreSQL Exporter
# Scruter Prometheus
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
# Optionnel : Scruter Grafana
- job_name: 'grafana'
static_configs:
- targets: ['grafana:3000']