opentelemetry-instrumentation-exceptions
OpenTelemetry unhandled exceptions instrumentation
What it is and what it does
This package is an OpenTelemetry instrumentation plugin that automatically hooks into Python's exception handling to capture exceptions that would otherwise go unobserved. It intercepts uncaught exceptions at the process level, thread-level exceptions, and unhandled asyncio task exceptions, converting them into OpenTelemetry log records. This is useful when you already have OpenTelemetry infrastructure in place and want to ensure all exceptions—even those that crash threads or tasks silently—are visible in your observability system.
The instrumentation is minimal to set up: a single call to `UnhandledExceptionInstrumentor().instrument()` at startup. It requires Python 3.10 or later and depends on the core OpenTelemetry API and instrumentation packages. Since it is still in Beta status and was first released in mid-2026, it may have rough edges or API changes in future versions.
Use it for:
- Capture silent thread exceptions in multi-threaded applications that would otherwise be lost.
- Monitor asyncio task exceptions in async applications to detect tasks failing without explicit error handling.
- Centralize exception visibility in microservices using OpenTelemetry backends like Jaeger or Datadog.
- Audit unhandled exceptions in production without modifying application code.
- Detect and alert on process-level crashes or fatal exceptions in real time.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Automatically captures uncaught exceptions in your Python process, threads, and asyncio tasks and emits them as OpenTelemetry logs for observability.
Yes, if you already use OpenTelemetry and need to capture exceptions that would otherwise be invisible. The low install friction, active maintenance, and permissive license make it a straightforward addition to observability infrastructure. The Beta status and recent release date mean you should test it in a non-critical environment first and monitor for any edge cases in your specific exception patterns.
Install
opentelemetry-instrumentation-exceptions on PyPI
pip
pip install opentelemetry-instrumentation-exceptionsuv
uv add opentelemetry-instrumentation-exceptionspoetry
poetry add opentelemetry-instrumentation-exceptionsInstalling opentelemetry-instrumentation-exceptions
Before you install
Low install friction with a pure-Python wheel and only three core OpenTelemetry dependencies. Actively maintained as of 2026-08-14 with recent releases; marked Beta status.
License in practice
Apache-2.0 permissive license allows commercial and private use with minimal restrictions.
Quickstart
pip install opentelemetry-instrumentation-exceptions
from opentelemetry.instrumentation.exceptions import UnhandledExceptionInstrumentor
UnhandledExceptionInstrumentor().instrument()
Requires Python 3.10 or later; requires an active OpenTelemetry API and exporter setup to actually receive the emitted logs.
Verify before relying
- Whether this package works with all asyncio patterns (e.g., task groups, context vars) or has known limitations.
- Performance overhead when instrumenting high-exception-rate applications.
- Whether exception context (stack traces, local variables) is preserved in the emitted logs.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — opentelemetry-api, opentelemetry-instrumentation, opentelemetry-semantic-conventions |
| Maintenance | actively maintained — 29 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 460,215/month — #6,540 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: opentelemetry_instrumentation_exceptions-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-contrib-instrumentationsA meta-package that installs all OpenTelemetry…
permissive · top 15,000 on PyPI
honeybadgerHoneybadger captures uncaught exceptions in…
permissive · top 15,000 on PyPI
opentelemetry-instrumentation-structlogIntegrates structlog logging with OpenTelemetry…
permissive · top 15,000 on PyPI
opentelemetry-instrumentation-loggingIntegrates Python's standard logging module…
permissive · top 1,000 on PyPI
opentelemetry-instrumentation-pymemcacheAdds OpenTelemetry tracing instrumentation to…
permissive · top 5,000 on PyPI
opentelemetry-instrumentation-kafka-pythonAdds distributed tracing instrumentation to…
permissive · top 5,000 on PyPI
opentelemetry-instrumentation-tornadoAdds OpenTelemetry tracing instrumentation to…
permissive · top 5,000 on PyPI
opentelemetry-test-utilsProvides test utilities and helpers for writing…
permissive · top 15,000 on PyPI
bugsnagBugsnag is an error monitoring notifier that…
permissive · top 15,000 on PyPI