mirror of
https://github.com/digitalocean/ceph_exporter
synced 2025-02-13 18:07:07 +00:00
16 lines
428 B
YAML
16 lines
428 B
YAML
# prometheus.yml
|
|
|
|
# Place in same directory as docker-compose.yml and replace $DOCKERHOST with your desired host IP where ceph_exporter is running
|
|
|
|
global:
|
|
scrape_interval: 5s
|
|
external_labels:
|
|
monitor: my-monitor
|
|
scrape_configs:
|
|
- job_name: prometheus
|
|
static_configs:
|
|
- targets: ['localhost:9090']
|
|
- job_name: ceph-exporter
|
|
static_configs:
|
|
- targets: ['$DOCKERHOST:9128']
|