raven-python
raven-python copied to clipboard
Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python
We are getting that error on Zope: ``` 2017-05-28T17:49:39 ERROR sentry.errors.serializer 'ascii' codec can't encode character u'\xed' in position 42: ordinal not in range(128) Traceback (most recent call last): File...
Hey guys, I don't know if I set up Raven wrong or what, but it's not logging 500 errors. I've added ``` 'raven.contrib.django.raven_compat', ``` to my INSTALLED_APPS and then also...
I am having an issue with requests from iOS timing out when Raven is enabled. Any endpoints from my project will time out, but not endpoints that are included from...
At this point: ``` ~/.venvs/farfor/lib/python2.7/site-packages/raven/versioning.py", line 28, in fetch_git_sha head = text_type(fp.read()).strip() UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 27: ordinal not in range(128) ```
Sentry should recognize API JSON requests as JSON type not as Form. If they are recognized as Form the body payload appears empty in Sentry UI. [RFC6839](https://tools.ietf.org/html/rfc6839) Fixes #382
Hello,this is probably a documentation error. What is the minimum log format expected by sentry/raven-python? In the raven python documentation, there are several formats, and I could not figure out...
I wonder if there is any interest to add the following snippet which allows a cherrypy application to send exceptions to sentry ```python import cherrypy import raven def register_sentry(): cherrypy.tools.report_to_sentry...
I assume there are _no_ plans whatsoever to integrate with [Sanic](https://github.com/channelcat/sanic), so I'll be handling it manually, but I'll be more than interested in writing an integration myself. For additional...
More code required below for a twisted eventloop, sorry, this is ripped from a larger project. ``` client = Client(dsn=some_value, transport=TwistedHTTPTransport) client.captureMessage(message='hello') ``` if the DSN is a string then...
Hello, I have encountered a problem after upgrading from raven 5.x and not sure how to deal with it better. In older raven versions it was allowed to set Transport...