Sentry integration for ASGI frameworks.
Project description
sentry-asgi
Sentry integration for ASGI frameworks.
Installation:
pip install sentry-asgi
Usage:
from sentry_asgi import SentryMiddleware
import sentry_sdk
sentry_sdk.init(dsn=...)
app = ...
app = SentryMiddleware(app)
Here's a more complete example, using Starlette:
import sentry_sdk
from sentry_asgi import SentryMiddleware
from sentry_asgi.executor import ContextPreservingExecutor # Python 3.7+
sentry_sdk.init(dsn=...)
app = Starlette()
@app.route("/")
def homepage(request):
raise ValueError("nope")
@app.on_event("startup")
async def setup_executor():
executor = ContextPreservingExecutor()
loop = asyncio.get_event_loop()
loop.set_default_executor(executor)
app.add_middleware(SentryMiddleware)
Notes
ThreadPools and execution context
The Sentry SDK requires Python 3.7's contextvars
support in order to properly
tie messages and logging back to the request context that is added SentryMiddleware.
It is recommended that you install the ContextPreservingExecutor
as the default
executor, to ensure that Sentry is able to correctly tie related logging, messages,
and breadcrumbs to the middleware request/response context.
Here's an example of how you would do that with Starlette.
from sentry_asgi.executor import ContextPreservingExecutor
...
@app.on_event("startup")
def setup_default_executor():
executor = ContextPreservingExecutor()
loop = asyncio.get_event_loop()
loop.set_default_executor(executor)
Other ASGI frameworks should also typically include a "startup" hook, which is where you'll want to place your executor setup code.
On 3.6 the SentryMiddleware will capture and log application exceptions just fine, but will not properly tie in logging, messages, or breadcrumbs for any code that runs within a thread pool executor. (Typically ASGI frameworks will run any regular sync views within an executor).
For further context see here.
It is possible that Python 3.8 will include support for retaining the correct context without having to setup a custom executor class.
Endpoint information
It is recommended that frameworks populate an "endpoint" key in the ASGI scope, to indicate which view function or class should be logged by the middleware.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sentry-asgi-0.1.3.tar.gz
.
File metadata
- Download URL: sentry-asgi-0.1.3.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 705f80ebdab7305d085022ab19bc6c091d737cf1d32aefd28b084f2d8179a8fe |
|
MD5 | ddae79451d418418ffbe4d784160df12 |
|
BLAKE2b-256 | dc607aff3789e541689c6fa49df3010d162279e2454952ad43ef133a8ce6c5e5 |