21 lines
538 B
YAML
21 lines
538 B
YAML
# Prometheus - scrapes metrics from OTEL Collectors (BAP, BPP, network)
|
|
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
|
|
scrape_configs:
|
|
- job_name: "otel-collector-bap"
|
|
static_configs:
|
|
- targets: ["otel-collector-bap:8889"]
|
|
metrics_path: /metrics
|
|
|
|
- job_name: "otel-collector-bpp"
|
|
static_configs:
|
|
- targets: ["otel-collector-bpp:8891"]
|
|
metrics_path: /metrics
|
|
|
|
- job_name: "otel-collector-network"
|
|
static_configs:
|
|
- targets: ["otel-collector-network:8890"]
|
|
metrics_path: /metrics
|