Skip to content

tyler46/nameko-sentry

 
 

Repository files navigation

nameko-sentry

Extension for nameko that sends entrypoint exceptions to a sentry server.

Usage

Add your sentry DSN and optional client configuration to your nameko config file:

# config.yaml
SENTRY:
    DSN: ...
    CLIENT_CONFIG:
        site: "my site name"
        processors:
            - myapp.processors.SanitizePasswordsProcessor
...

Include the SentryReporter dependency in your service class:

# service.py
from nameko.web.handlers import http
from nameko_sentry import SentryReporter

class Service(object):
    name = "demo"

    sentry = SentryReporter()

    @http("GET", "/broken")
    def broken(self, request):
        raise SomeException("boom")

Run your service, providing the config file:

$ nameko run service --config config.yaml

Exceptions in entrypoints will be sent to your sentry server:

$ curl -i http://localhost:8000/broken
HTTP/1.1 500 INTERNAL SERVER ERROR
Content-Type: text/plain; charset=utf-8
Content-Length: 23
Date: Tue, 28 Jul 2015 13:34:06 GMT

Error: SomeException: boom

Screenshot of reported error

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.2%
  • Makefile 0.8%