raven-python
raven-python copied to clipboard
Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python
This all seems to be a bit of a mess, but if you want to access the raw request data in Flask regardless of the content type (I can't control...
Error logging from Celery tasks is broken out of the box. While uncaught exception reporting works, error-level log messages from inside Celery worker do not get reported to Sentry. For...
Hello! I'm a maintainer of [Trio](https://trio.readthedocs.io), an async library for Python. (Think of it as an alternative to asyncio.) We just had someone try to use it and raven together,...
As it mentionned on : https://docs.python.org/3/library/ssl.html#socket-creation > Since Python 3.2 and 2.7.9, it is recommended to use the SSLContext.wrap_socket() of an SSLContext instance to wrap sockets as SSLSocket objects. The...
We noticed getting unfiltered passwords into our Sentry. The environment we run is: - Python==3.6.4 - Django==2.0.2 - djangorestframework==3.7.7 - raven==6.9.0 With following json in the body of the call...
**Daphne** is the recommended WebServer to run the **channels** library for WebSockets with Django. The way to deploy daphne is by using this **asgi.py** file (see: https://channels.readthedocs.io/en/latest/deploying.html) The versions I...
Possibly related to https://github.com/getsentry/raven-python/issues/929, but more specific and we think there is an easy fix, but we would like some feedback if we're on the right track. **The symptoms** Two...
I using Celery and Django and each time got exception during Celery process exit. Python==3.6.1 Django==2.0 celery==4.1.0 eventlet==0.22.0 raven==6.5.0 Celery launched with params: `-A streamtelecom.settings.celery:consumer_app worker -P eventlet -c 1000...
tl;dr The fix in [GH-816] does not work but makes things worse by producing misleading log messages. The code in https://github.com/getsentry/raven-python/blob/master/raven/conf/remote.py#L36 Should result in synchronous HTTP transport selection on AWS...
Hello! I use python/raven 6.9.0 but recently the errors not are send in sentry. Like this work: ``` sentry = Sentry( app, dsn=config.SENTRY_DSN, ) sentry.captureMessage('hello, world! 2') ``` ![screen shot...