statping/dev/prometheus.yml

29 lines
688 B
YAML
Raw Normal View History

2020-02-27 10:09:07 +00:00
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: 'statping'
scrape_interval: 15s
2020-02-28 06:37:48 +00:00
bearer_token: 'exampleapisecret'
2020-02-27 10:09:07 +00:00
static_configs:
- targets: ['statping:8080']
- job_name: 'statping_mysql'
scrape_interval: 15s
2020-02-28 06:37:48 +00:00
bearer_token: 'exampleapisecret'
2020-02-27 10:09:07 +00:00
static_configs:
- targets: ['statping_mysql:8080']
- job_name: 'statping_postgres'
scrape_interval: 15s
2020-02-28 06:37:48 +00:00
bearer_token: 'exampleapisecret'
2020-02-27 10:09:07 +00:00
static_configs:
- targets: ['statping_postgres:8080']
2020-02-28 06:37:48 +00:00
- job_name: 'statping_dev'
2020-02-27 10:09:07 +00:00
scrape_interval: 15s
2020-02-28 06:37:48 +00:00
bearer_token: 'exampleapisecret'
2020-02-27 10:09:07 +00:00
static_configs:
2020-02-29 15:00:08 +00:00
- targets: ['statping_dev:8585']