opentelemetry-instrumentation-starlette
OpenTelemetry Starlette Instrumentation
What it is and what it does
This package integrates Starlette web applications with OpenTelemetry's distributed tracing system. It automatically instruments HTTP requests handled by Starlette, capturing request/response details and propagating trace context across service boundaries. The instrumentation works both as a manual middleware attachment and through OpenTelemetry's auto-instrumentation discovery mechanism.
It depends on the core OpenTelemetry API and instrumentation framework, plus ASGI instrumentation (since Starlette is an ASGI framework) and semantic conventions for standardized span attributes. Use it when you need observability into Starlette application behavior—request latency, error rates, and distributed trace correlation—without writing tracing code directly into your handlers.
Use it for:
- Trace HTTP requests in a Starlette microservice to correlate with traces from downstream services.
- Monitor request latency and error rates in production Starlette applications via OpenTelemetry exporters.
- Debug slow endpoints by examining detailed span data captured automatically by the instrumentation.
- Propagate trace IDs across service boundaries in a distributed system using standard OpenTelemetry headers.
- Enable observability in Starlette apps without modifying application code via auto-instrumentation.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Adds automatic tracing and observability instrumentation to Starlette web applications, capturing HTTP request and response telemetry for OpenTelemetry.
Yes, if you are already using OpenTelemetry in your stack and need Starlette tracing. The package is actively maintained, has no known vulnerabilities, low install friction, and a permissive license. It is currently in beta (0.65b0), so expect the API to remain stable but verify compatibility with your specific Starlette and OpenTelemetry versions before production use.
Install
opentelemetry-instrumentation-starlette on PyPI
pip
pip install opentelemetry-instrumentation-starletteuv
uv add opentelemetry-instrumentation-starlettepoetry
poetry add opentelemetry-instrumentation-starletteInstalling opentelemetry-instrumentation-starlette
Before you install
Low friction install with five OpenTelemetry runtime dependencies. Actively maintained with a recent release (29 days old) and continuous repository activity.
License in practice
Apache-2.0 permissive license allows use in most commercial and open-source projects without significant restrictions.
Quickstart
pip install opentelemetry-instrumentation-starlette
from opentelemetry.instrumentation.starlette import StarletteInstrumentor
from starlette.applications import Starlette
app = Starlette()
StarletteInstrumentor().instrument_app(app)
Requires Python 3.10 or later; requires a configured OpenTelemetry tracer provider to export spans.
Verify before relying
- Whether auto-instrumentation via opentelemetry-instrumentation entry points works out of the box without manual configuration.
- What telemetry attributes (span names, tags, status codes) are captured by default.
- Compatibility with specific Starlette versions and whether there are known breaking changes.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 5 — opentelemetry-api, opentelemetry-instrumentation-asgi, opentelemetry-instrumentation, opentelemetry-semantic-conventions, opentelemetry-util-http |
| Maintenance | actively maintained — 29 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 5,954,626/month — #2,003 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: opentelemetry_instrumentation_starlette-0.65b0-py3-none-any.whl
Tags
More Monitoring packages
Wraps any iterable to display a real-time…
copyleft · top 100 on PyPI
opentelemetry-semantic-conventionsProvides generated Python code for…
permissive · top 100 on PyPI
opentelemetry-sdkProvides the reference implementation of the…
permissive · top 100 on PyPI
opentelemetry-apiProvides the abstract API and interfaces for…
permissive · top 100 on PyPI
opentelemetry-exporter-otlp-proto-httpExports OpenTelemetry observability data to an…
permissive · top 1,000 on PyPI
opentelemetry-instrumentationProvides automatic instrumentation commands and…
permissive · top 1,000 on PyPI
opentelemetry-instrumentation-asgiProvides ASGI middleware for OpenTelemetry that…
permissive · top 1,000 on PyPI
opentelemetry-instrumentation-fastapiAutomatically instruments FastAPI applications…
permissive · top 1,000 on PyPI
opentelemetry-instrumentation-aiohttp-serverAdds distributed tracing to aiohttp server…
permissive · top 5,000 on PyPI
opentelemetry-util-httpProvides ASGI and WSGI middleware and HTTP…
permissive · top 1,000 on PyPI
opentelemetry-instrumentation-djangoAdds distributed tracing to Django applications…
permissive · top 1,000 on PyPI
opentelemetry-instrumentation-flaskAdds distributed tracing to Flask web…
permissive · top 1,000 on PyPI
opentelemetry-instrumentation-elasticsearchAdds distributed tracing to Elasticsearch…
permissive · top 5,000 on PyPI
opentelemetry-instrumentation-openai-agents-v2Automatically captures telemetry data from…
permissive · top 5,000 on PyPI
opentelemetry-instrumentation-agnoAutomatically instruments the Agno framework to…
permissive · top 5,000 on PyPI
starlette-testclientProvides a drop-in replacement for Starlette's…
permissive · top 5,000 on PyPI