Files
dockercompose_alt1/dockercompose/litellm/config/prometheus.yml
T

18 lines
648 B
YAML
Raw Normal View History

2026-04-05 15:07:53 +08:00
# =============================================================================
# Prometheus Configuration — scrapes LiteLLM /metrics
# =============================================================================
global:
scrape_interval: 15s # how often to scrape targets
evaluation_interval: 15s # how often to evaluate rules
scrape_timeout: 10s
scrape_configs:
- job_name: "litellm"
static_configs:
- targets: ["litellm:4000"] # internal service name + port
metrics_path: "/metrics"
scrape_interval: 15s
- job_name: "prometheus"
static_configs:
- targets: ["localhost:9090"]