skillfed

opentelemetry-instrumentation-asyncio

OpenTelemetry instrumentation for asyncio

opentelemetry-instrumentation-asyncio v0.65b0 6.5M downloads/30d#1,897 on PyPI1,086
Permissive license Apache-2.0 Active released

What it is and what it does

This package integrates OpenTelemetry tracing into Python asyncio applications, allowing you to observe the execution of coroutines, futures, and thread-offloaded work. It wraps asyncio primitives to emit traces and metrics (duration and count) for instrumented operations, helping you diagnose performance issues and understand execution flow in async systems.

You control what gets traced via environment variables: set OTEL_PYTHON_ASYNCIO_COROUTINE_NAMES_TO_TRACE to name specific coroutines to trace, OTEL_PYTHON_ASYNCIO_TO_THREAD_FUNCTION_NAMES_TO_TRACE for blocking functions run via asyncio.to_thread, and OTEL_PYTHON_ASYNCIO_FUTURE_TRACE_ENABLED to enable future tracing. The instrumentation runs as a one-line setup call after import, making it straightforward to add to existing asyncio code.

Use it for:

  • Trace execution of named coroutines in a microservice to identify slow async operations.
  • Monitor duration and count metrics for asyncio processes to detect performance regressions.
  • Instrument blocking functions offloaded to threads via asyncio.to_thread for end-to-end visibility.
  • Integrate asyncio tracing into a distributed tracing system (e.g., Jaeger, Datadog) via OpenTelemetry exporters.
  • Debug concurrency issues by correlating coroutine traces with other instrumented services.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Adds distributed tracing and metrics to asyncio applications by instrumenting coroutines, futures, and thread-offloaded functions with OpenTelemetry.

Yes, if you are building or operating asyncio applications and need observability. Low install friction, active maintenance, permissive license, and no known vulnerabilities make it a safe choice. Beta status is typical for OpenTelemetry instrumentation packages and does not indicate instability. Install if you have an OpenTelemetry backend or exporter already in place or planned.

Install

opentelemetry-instrumentation-asyncio on PyPI

pip

pip install opentelemetry-instrumentation-asyncio

uv

uv add opentelemetry-instrumentation-asyncio

poetry

poetry add opentelemetry-instrumentation-asyncio

Installing opentelemetry-instrumentation-asyncio

Before you install

Low friction install with a small, stable dependency tree. Actively maintained as of 2026-08-14 with recent releases; marked Beta but supported on modern Python versions (3.10–3.14).

License in practice

Apache-2.0 permissive license allows commercial and private use without restriction.

Quickstart

pip install opentelemetry-instrumentation-asyncio

import asyncio
from opentelemetry.instrumentation.asyncio import AsyncioInstrumentor

AsyncioInstrumentor().instrument()

async def main():
    await asyncio.sleep(0.1)

asyncio.run(main())

Requires Python 3.10 or later. Tracing specific coroutines requires setting OTEL_PYTHON_ASYNCIO_COROUTINE_NAMES_TO_TRACE environment variable.

Verify before relying

  • Whether metrics are emitted to a backend automatically or require separate exporter configuration.
  • Performance overhead of instrumentation on high-concurrency asyncio workloads.
  • Compatibility with third-party asyncio frameworks (e.g., aiohttp, FastAPI) beyond core asyncio.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 4 — opentelemetry-api, opentelemetry-instrumentation, opentelemetry-semantic-conventions, wrapt
Maintenance actively maintained — 29 days since the last release
Last repo commit
First released
Downloads 6,506,234/month — #1,897 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: opentelemetry_instrumentation_asyncio-0.65b0-py3-none-any.whl

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

asyncio tracing instrumentationopentelemetry asynciocoroutine tracingasync task monitoringdistributed tracing python asyncioasyncio metrics duration countopentelemetry instrumentation
observabilitytracingasyncio

More Monitoring packages

tqdm

Wraps any iterable to display a real-time…

copyleft · top 100 on PyPI

opentelemetry-semantic-conventions

Provides generated Python code for…

permissive · top 100 on PyPI

opentelemetry-sdk

Provides the reference implementation of the…

permissive · top 100 on PyPI

opentelemetry-api

Provides the abstract API and interfaces for…

permissive · top 100 on PyPI

opentelemetry-exporter-otlp-proto-http

Exports OpenTelemetry observability data to an…

permissive · top 1,000 on PyPI

opentelemetry-instrumentation

Provides automatic instrumentation commands and…

permissive · top 1,000 on PyPI

instana

Instana is a Python instrumentation package…

permissive · top 15,000 on PyPI

opentelemetry-instrumentation-celery

Adds distributed tracing and observability to…

permissive · top 5,000 on PyPI

opentelemetry-instrumentation-django

Adds distributed tracing to Django applications…

permissive · top 1,000 on PyPI

opentelemetry-instrumentation-redis

Adds distributed tracing to Redis client calls…

permissive · top 1,000 on PyPI

opentelemetry-instrumentation-boto

Adds distributed tracing to AWS SDK (Boto)…

permissive · top 5,000 on PyPI

opentelemetry-instrumentation-grpc

Adds automatic tracing and monitoring to gRPC…

permissive · top 5,000 on PyPI

opentelemetry-instrumentation-aio-pika

Adds distributed tracing instrumentation to…

permissive · top 5,000 on PyPI

opentelemetry-instrumentation-aiohttp-server

Adds distributed tracing to aiohttp server…

permissive · top 5,000 on PyPI

opentelemetry-instrumentation-asyncpg

Adds distributed tracing to PostgreSQL queries…

permissive · top 5,000 on PyPI

autodynatrace

Autodynatrace wraps the Dynatrace OneAgent SDK…

permissive · top 15,000 on PyPI