sentry-python
sentry-python copied to clipboard
The official Python SDK for Sentry.io
When capturing errors, the Sentry stack traces only contain the frames from when an error happens. It does not contain any frames from the beginning of the execution. This screenshot...
### How do you use Sentry? Sentry Saas (sentry.io) ### Version 2.13.0 ### Steps to Reproduce I am going nuts with this issue which I believe is coming from sentry-sdk...
### Problem Statement I have the following code snippet: ``` @app.route('/api/job-experience', methods=['GET']) def get_job_experience(): user_id = get_user_id() print(f"User ID: {user_id}") # Print user ID for each action if not user_id:...
Run our test suites of the different integrations with the `potel-base` branch. (Just ran `tox -f aiohttp` for example on the `potel-base` branch and made notes on the errors that...
### How do you use Sentry? Sentry Saas (sentry.io) ### Version 2.15.0 ### Steps to Reproduce The issue is happening in a custom Python framework consisting of: - microservices running...
Adds an integration for Qdrant, supporting both REST and gRPC mode. --- Qdrant is a vector-search database. Mentioned here: https://github.com/getsentry/sentry-python/discussions/3007#discussioncomment-9251889 Opening this as draft PR as communicated in the community...
### Problem Statement Replace `start_transaction`s with `start_span`. (But leave `start_transaction` itself as is, just deprecated.) ### Solution Brainstorm Do it.
This test is flaky; Codecov has even identified it as such. Let's try forking the test, maybe that will make it more stable.
Every so often, I get really confused when as to why the variables are not matching the errors. After some time debugging and reporting I'm told again that we trim...
A collection of differences in types between Sentry and OpenTelementry. - ### `span.set_data()/otel_span.set_attribute()` - Sentry `span.set_data(key, value)`: `value` allows `Any` type, so everything including `dicts`. - Opentelementry `otel_span.set_attribute(key, value)` (which...