mirror of
https://github.com/katanemo/plano.git
synced 2026-07-02 15:51:02 +02:00
- 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.
15 lines
420 B
YAML
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"]
|