OpenTelemetry instrumentation for asyncio
Project description
AsyncioInstrumentor: Tracing Requests Made by the Asyncio Library
The opentelemetry-instrumentation-asyncio package allows tracing asyncio applications. It also includes metrics for duration and counts of coroutines and futures. Metrics are generated even if coroutines are not traced.
Set the names of coroutines you want to trace.
export OTEL_PYTHON_ASYNCIO_COROUTINE_NAMES_TO_TRACE=coro_name,coro_name2,coro_name3
If you want to trace specific blocking functions executed with the to_thread function of asyncio, set the name of the functions in OTEL_PYTHON_ASYNCIO_TO_THREAD_FUNCTION_NAMES_TO_TRACE.
export OTEL_PYTHON_ASYNCIO_TO_THREAD_FUNCTION_NAMES_TO_TRACE=func_name,func_name2,func_name3
You can enable tracing futures with OTEL_PYTHON_ASYNCIO_FUTURE_TRACE_ENABLED
export OTEL_PYTHON_ASYNCIO_FUTURE_TRACE_ENABLED=true
Run instrumented application
1. coroutine
# export OTEL_PYTHON_ASYNCIO_COROUTINE_NAMES_TO_TRACE=sleep
import asyncio
from opentelemetry.instrumentation.asyncio import AsyncioInstrumentor
AsyncioInstrumentor().instrument()
async def main():
await asyncio.create_task(asyncio.sleep(0.1))
asyncio.run(main())
2. future
# export OTEL_PYTHON_ASYNCIO_FUTURE_TRACE_ENABLED=true
loop = asyncio.get_event_loop()
future = asyncio.Future()
future.set_result(1)
task = asyncio.ensure_future(future)
loop.run_until_complete(task)
3. to_thread
# export OTEL_PYTHON_ASYNCIO_TO_THREAD_FUNCTION_NAMES_TO_TRACE=func
import asyncio
from opentelemetry.instrumentation.asyncio import AsyncioInstrumentor
AsyncioInstrumentor().instrument()
async def main():
await asyncio.to_thread(func)
def func():
pass
asyncio.run(main())
asyncio metric types
asyncio.process.duration (seconds) - Duration of asyncio process
asyncio.process.count (count) - Number of asyncio process
API
Installation
pip install opentelemetry-instrumentation-asyncio
References
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for opentelemetry_instrumentation_asyncio-0.47b0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0d6ccdd5488abd69c189bd76e25b1974f3c043ae41cc11263028ae9fec22bc9 |
|
MD5 | fc445fe0b4bad5f6b46552a6d7844758 |
|
BLAKE2b-256 | aa7d34db1ab51da7ee8509040bbd85514091dfa0ad398a13b37f44d988fcf9fc |
Close
Hashes for opentelemetry_instrumentation_asyncio-0.47b0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6883d8f9f7ab41bc5a036f8efbcd93795a435295875960b48d5517fcaa526aa8 |
|
MD5 | 09b12602ed92aefcfe47fcbbd38d0579 |
|
BLAKE2b-256 | 208ef1d15bb79edfa19e366592e3815d5f27e7255173d9d67fade1cfd360a69e |