sentry-python
sentry-python copied to clipboard
The official Python SDK for Sentry.io
The integrations in the Python SDK still use the Hub and other deprecated API. Update *all* the integrations to use the new Scopes API: - remove any usage of `Hub`...
### Problem Statement The `sentry.monitor()` context manager is incredibly basic and doesn't set up transactions, tags or allow you to configure cronjobs via upsert ### Solution Brainstorm My current solution...
### Problem Statement I want more metadata in `logentry` so I can create GitHub/GitLab links from the Issue Details page. ### Solution Brainstorm logentry [1] does not have enough metadata...
### How do you use Sentry? Self-hosted/on-premise ### Version 1.40.5 ### Steps to Reproduce Call `sentry_sdk.init()` while ImportWarnings are enabled, or convert them to error to see traceback ``` $...
### How do you use Sentry? Sentry Saas (sentry.io) ### Version 1.40.5 ### Steps to Reproduce One Sentry user reported an issue where the SDK gets in am apparently endless...
### Environment SaaS (https://sentry.io/) ### Steps to Reproduce I am randomly getting the following error from some of my Python services. The SDK seems it is sending events correctly to...
### How do you use Sentry? Sentry Saas (sentry.io) ### Version 1.40.5 ### Steps to Reproduce ``` sentry_loguru = LoguruIntegration( level=LoggingLevels.TRACE.value, # Capture info and above as breadcrumbs event_level=LoggingLevels.ERROR.value, #...
### How do you use Sentry? Self-hosted/on-premise ### Version 1.40.5 ### Steps to Reproduce 1. Clone repo 1. Run steps outlined in [`CONTRIBUTING.md#Development Environment`](https://github.com/getsentry/sentry-python/blob/master/CONTRIBUTING.md#development-environment) ### Expected Result `pytest tests/` comes...
It is helpful to have the operation's name if trying to track the individual performance of GraphQL transactions using Sentry. This PR implements the approach suggested in [this article](https://jerrynsh.com/how-to-monitor-python-graphql-api-with-sentry/), as...
This is a quick fix for #2760. Ideally we'd do away with constraints duplication/introduction in `tox.ini`, but I don't see a way to do so without much more invasive changes,...