blob: e177c9c4b1a3771b9367f0c6f0a74185570265fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
global:
scrape_interval: 15s
rule_files:
- "/etc/prometheus/alert_rules.yml"
scrape_configs:
- job_name: "trading-services"
authorization:
type: Bearer
credentials: "${METRICS_AUTH_TOKEN}"
static_configs:
- targets:
- "data-collector:8080"
- "strategy-engine:8081"
- "order-executor:8082"
- "portfolio-manager:8083"
|