diff --git a/docs/observability/opentelemetry_v2.md b/docs/observability/opentelemetry_v2.md index 4a9f1ad7c..863798a34 100644 --- a/docs/observability/opentelemetry_v2.md +++ b/docs/observability/opentelemetry_v2.md @@ -524,6 +524,7 @@ Response, usage, cost, identity: | `litellm.call_id` | always | | `litellm.provider.model` | always (the model string actually sent to the provider) | | `litellm.request.streaming` | when true | +| `litellm.request.route` | on the proxy (the same route the root span reports as `http.route`: the FastAPI route template, e.g. `/v1/responses/{response_id}`, or the literal path on a passthrough prefix such as `/openai/...`; when no server span exists, for example the route is in `OTEL_PYTHON_FASTAPI_EXCLUDED_URLS` or the FastAPI instrumentation is not installed, it falls back to the route the proxy recorded at auth) | | `litellm.cost.total` | on success | | `litellm.cost.input`, `output`, `cache_read`, `cache_creation`, `tool_usage` | when the source reported the breakdown | | `litellm.cost.original`, `discount_amount`, `discount_percent`, `margin_fixed_amount`, `margin_percent`, `margin_total_amount` | when reported |