Selector / prometheus.yml
legend1234's picture
Add initial files
b627819
raw
history blame
392 Bytes
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
- job_name: 'flask'
static_configs:
- targets: ['web:8000']
- job_name: 'redis'
static_configs:
- targets: ['redis-exporter:9121']
- job_name: 'flower'
static_configs:
- targets: ['flower:5555']