sentry-python
sentry-python copied to clipboard
The official Python SDK for Sentry.io
### Problem Statement There is a PEP for having fine grained error locations in tracebacks: https://peps.python.org/pep-0657/ ### Solution Brainstorm It would be nice if Sentry could also display the fine...
### Problem Statement There is a discussion on the Starlette repo about the Sentry Integration: https://github.com/encode/starlette/discussions/1787 ### Solution Brainstorm Go through everything in the discussion and try to verify it....
We decided that OPTIONS requests shouldn't be traced by default since they eat into quota a lot for some users and don't add much value. First implementation should not start...
### How do you use Sentry? Sentry Saas (sentry.io) ### Version 1.9.10 ### Steps to Reproduce Using sentry-sdk with fastapi python integration: ``` import sentry_sdk from sentry_sdk.integrations.starlette import StarletteIntegration from...
### Environment SaaS (https://sentry.io/) ### Steps to Reproduce ```python sentry_sdk.init( dsn=os.getenv("SENTRY_DSN"), integrations=[FlaskIntegration()], environment=env, ignore_errors=[AuthException] ) ``` `AuthException` inherits from Exception ### Expected Result ignore `AuthException` ### Actual Result `AuthException` is...
### Problem Statement Currently not all of my local variables are showing up in my error stack trace, and the ones that show up and the ones that don't is...
Trying out [an automated tool](https://github.com/ilevkivskyi/com2ann) to translate type comments to Python 3 compatible annotations. --- ## General Notes Thank you for contributing to `sentry-python`! Please add tests to validate your...
### Problem Statement There is no integration in the Python SDK which provides some auto-instrumentation for kafka interactions. Which requires [manual instrumentation](https://docs.sentry.io/platforms/python/usage/distributed-tracing/custom-instrumentation/) to be able to capture span information and...
[ARQ](https://arq-docs.helpmanual.io/#) for Python is: > Job queues and RPC in python with asyncio and redis. > arq was conceived as a simple, modern and performant successor to [rq](http://python-rq.org/). There should...