raven-python
raven-python copied to clipboard
Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python
Can you drop the anyjson dependency? I think it doesn't make sense anymore.
We are running the raven python client inside of a (yes, very old school, I agree) CGI web application and would like to use a threaded transport, so that normal...
This can be fixed with using raw string or escaping them. ``` ./tests/contrib/django/tests.py:729: DeprecationWarning: invalid escape sequence \: with Settings(SENTRY_ALLOW_ORIGIN=[re.compile('https?\://(.*\.)?example\.com')]): ```
We get some of our `TimeoutError` and `ConnectionError` instances from our `client.captureException` call in an `except` block but not always. I've been running `ping` against `google.com` and `sentry.io` from the...
See indygreg/PyOxidizer#69
Getting this on AWS Lambda with Python 3.6 runtime: ```pytb Traceback (most recent call last): File "/var/task/hsreplaynet/utils/instrumentation.py", line 112, in wrapper if sentry: File "/var/task/raven/contrib/django/models.py", line 69, in __len__ =...
Just noticed `exclude_paths` is only used when there are a non-empty `include_paths`. Could that be fixed? ```python if self.include_paths: for frame in self._iter_frames(data): if frame.get('in_app') is not None: continue path...
Hi, Would there be interest in logging timeout exceptions to Sentry? I happen to just have written a custom gunicorn worker (sync mode) that does exactly that. If you use...
We use `raven.contrib.flask.Sentry` to handle our error on flask app on python 3.5. But it produces warnings ``` /.../contextlib.py:99: DeprecationWarning: generator 'common_exception_handling' raised StopIteration self.gen.throw(type, value, traceback) ``` I was...
Software stack info is as flows: * Sentry version: 8.19.0 * Python 3.5.2 * raven 6.8 I have created a new project in my sentry, and following the doc, I...