mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
17 lines
585 B
YAML
17 lines
585 B
YAML
|
scrape_configs:
|
||
|
- job_name: 'leak-fast'
|
||
|
# Override the global default and scrape targets from this job every 5 seconds.
|
||
|
scrape_interval: 1s
|
||
|
static_configs:
|
||
|
- targets: ['fast-node:8000']
|
||
|
- job_name: 'leak-slow'
|
||
|
# Override the global default and scrape targets from this job every 5 seconds.
|
||
|
scrape_interval: 1s
|
||
|
static_configs:
|
||
|
- targets: ['slow-node:8000']
|
||
|
- job_name: 'no-leak'
|
||
|
# Override the global default and scrape targets from this job every 5 seconds.
|
||
|
scrape_interval: 1s
|
||
|
static_configs:
|
||
|
- targets: ['plain-node:8000']
|