27 lines
727 B
YAML
27 lines
727 B
YAML
global:
|
|
scrape_interval: 5s
|
|
|
|
scrape_configs:
|
|
- job_name: 'eventhub-node1'
|
|
static_configs:
|
|
- targets: ['eventhub-node1:8080'] # http://localhost:8080/metrics/default
|
|
labels:
|
|
node: 'node1'
|
|
metrics_path: '/metrics/default'
|
|
- job_name: 'eventhub-node2'
|
|
static_configs:
|
|
- targets: ['eventhub-node2:8080']
|
|
labels:
|
|
node: 'node2'
|
|
metrics_path: '/metrics/default'
|
|
- job_name: 'eventhub-node3'
|
|
static_configs:
|
|
- targets: ['eventhub-node3:8080']
|
|
labels:
|
|
node: 'node3'
|
|
metrics_path: '/metrics/default'
|
|
- job_name: 'traefik'
|
|
scrape_interval: 15s
|
|
static_configs:
|
|
- targets: [ 'traefik:8080' ]
|
|
metrics_path: '/metrics' |