opbeat_python icon indicating copy to clipboard operation
opbeat_python copied to clipboard

Python agent for Opbeat.

Results 38 opbeat_python issues
Sort by recently updated
recently updated
newest added

We need to actually use the request from the threadlocal if it is set

Hey guys, it wouldn't be bad to have opbeat collect uncaught exceptions in django commands like raven does: https://github.com/getsentry/raven-python/blob/master/raven/contrib/django/management/__init__.py

opbeat.log_current_exception should ensure that there is an actual exception at the time it is called.

The stacktrace of a decorated function shows up as the last line of the decorated function. We should instead show the function signature or the decorator.

Hi, I wanted to have Opbeat log to a file, so I initialized it like this : ``` python opbeat_client = Opbeat( app, organization_id=ID', app_id='ID2', secret_token='TOKEN', logging=True ) ``` But...

The instrumentation is not covering the psycopg2 extensions API. In order to reproduce this, try calling `psycopg2.extensions.ISQLQuote.prepare()` with the wrapped connection object, it will raise a ``` TypeError must be...

When objects (e.g. local variables in frames) are transformed, some exceptions are not catched, leading to the loss of the whole error instead of just that object. As a quick...

We currently are not able to parse form data if it is encoded as `multipart/form-data`.

enhancement