17 lines
392 B
YAML
17 lines
392 B
YAML
global:
|
|
scrape_interval: 10s
|
|
evaluation_interval: 10s
|
|
|
|
scrape_configs:
|
|
- job_name: 'prometheus'
|
|
static_configs:
|
|
- targets: [ 'localhost:9090' ]
|
|
|
|
- job_name: 'system'
|
|
static_configs:
|
|
- targets: [ 'host.docker.internal:9101' ]
|
|
|
|
- job_name: 'microservice'
|
|
metrics_path: '/actuator/prometheus'
|
|
static_configs:
|
|
- targets: [ 'host.docker.internal:8006' ] |