Skip to main content

An aiohttp middleware for reporting errors to Sentry

Project description

CI Status

An aiohttp middleware for reporting errors to Sentry. Python 3.5+ is required.

Usage

Just add SentryMiddleware as a middleware:

from aiohttp import web
from aiohttp_sentry import SentryMiddleware
app = web.Application(middlewares=[SentryMiddleware()])

Configuration

If you want to customize error reporting, you can use the optional sentry_kwargs parameter, which is a dict of kwargs passed to the lower-level Sentry library, raven. With this, you can specify environment details, filter out specific exceptions, and so on:

from aiohttp import web
from aiohttp_sentry import SentryMiddleware
app = web.Application(
    middlewares=(
        SentryMiddleware({
            'environment': 'foo',
            'release': 'bar',
            'ignore_exceptions': 'aiohttp.HTTPClientError'
        }),
        # ...
    ),
)

Attaching Data to Events

By default, aiohttp-sentry passes this data alongside reported exceptions:

  • HTTP scheme

  • HTTP method

  • URL

  • Query String

  • Request Headers (including cookies)

  • Requester’s IP address

If you need more data in sentry, you can do that by subclassing from SentryMiddleware and overriding the get_extra_data method, which returns all the above by default. Here’s what that looks like:

class DetailedSentryMiddleware(SentryMiddleware):

    async def get_extra_data(self, request):
        return {
            **super().get_extra_data(request)
            'settings': request.app['settings'],
        }

While get_extra_data is a coroutine, which means it can make database queries, API calls, or other I/O operations, use this carefully! Make sure you understand the implications of executing expensive operations every time an error happens. If the root cause of the error is an overloaded database, you are just going to make the problem worse, while not even being able to get the extra info you wanted.

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

aiohttp-sentry-0.5.0.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

aiohttp_sentry-0.5.0-py2.py3-none-any.whl (4.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file aiohttp-sentry-0.5.0.tar.gz.

File metadata

  • Download URL: aiohttp-sentry-0.5.0.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for aiohttp-sentry-0.5.0.tar.gz
Algorithm Hash digest
SHA256 0b2f7a2f322d31cbe848a9e0e5a03e713ebff0e362a7733ef873103cb885edb5
MD5 9929c0f1c787249e1403ca65b46cee78
BLAKE2b-256 5f270e8484cd3478f5ce5b75679613726fc1288b0c9f2cd939c93e051645dfa7

See more details on using hashes here.

File details

Details for the file aiohttp_sentry-0.5.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for aiohttp_sentry-0.5.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 96588014dcadb13ec3c2cb365b0e5d71ee59cfed35295087d711d881798df3ce
MD5 331fc42b4e009b56f6225ed1615bd1c2
BLAKE2b-256 06cc98ee22e39eb1dea78f15427aae2de737d4ed42d813aa7bf2f10bfb7e1f6b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page