plano/demos/observability/prometheus.yaml
Tom Stoffer a43c3d7557 Add demo of observability stack for monitoring Plano LLM gateway traffic
- Introduced Docker Compose setup with OpenTelemetry Collector, Tempo, Prometheus, and Grafana.
- Configured OTEL Collector to receive traces and derive Prometheus metrics.
- Added Grafana dashboards for visualizing LLM request metrics and latencies.
- Included configuration files for Prometheus and Tempo to support trace storage and metrics generation.
- Updated README with setup instructions and architecture overview.
2026-04-12 22:53:40 +12:00

15 lines
420 B
YAML

global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: otel-collector-spanmetrics
static_configs:
- targets: ["otel-collector:8889"]
# Scrape Envoy stats for WASM metrics (ratelimited_rq, etc.)
# Adjust the target if your Envoy admin port differs.
- job_name: envoy
metrics_path: /stats/prometheus
static_configs:
- targets: ["host.docker.internal:9901"]