sprockets.mixins.sentry

A RequestHandler mixin for sending exceptions to Sentry


License
BSD-3-Clause
Install
pip install sprockets.mixins.sentry==2.0.1

Documentation

sprockets.mixins.sentry

A RequestHandler mixin for sending exceptions to Sentry

Version Status License

Installation

sprockets.mixins.sentry is available on the Python Package Index and can be installed via pip or easy_install:

pip install sprockets.mixins.sentry

Documentation

https://sprocketsmixinssentry.readthedocs.org

Requirements

Example

This examples demonstrates how to use sprockets.mixins.sentry.

from sprockets.mixins import sentry
from tornado import web

class RequestHandler(sentry.SentryMixin, web.RequestHandler):
    """Requires a ``SENTRY_DSN`` environment variable is set with the
    DSN value provided by sentry.

    The Mixin should catch unhandled exceptions and report them to Sentry.

    """
    def get(self, *args, **kwargs):
        raise ValueError("This should send an error to sentry")