sentry-python
sentry-python copied to clipboard
The official Python SDK for Sentry.io
Adds OpenFeature integration and extends the `Scope` with a `flags` property. As flags are evaluated by an application they are stored within the Sentry SDK (lru cache). When an error...
When viewing a stacktrace in Sentry, frames are marked as either `in_app` or not `in_app`. Non-in-app frames are collapsed by default. The original `in_app` decision comes from the SDK; however,...
They now read data from span attributes, which is a problem if tracing is disabled, since then we get NonRecordingSpans that can't have attributes set on them. Fix this. We...
In [#1490](https://github.com/getsentry/sentry-python/pull/1490), the `._transaction_info` property was added to the `Scope` class. However, there are some issues with this property: - It causes the error transaction_info: Discarded unknown attribute in older...
Ensure the handling thread is set on the transaction for asgi transactions not just main thread.
### How do you use Sentry? Self-hosted/on-premise ### Version 2.9.0 ### Steps to Reproduce We updated self hosted sentry to version 24.8.0 and after that logging integration do not render...
# Description I actually forgotten to add the most crucial in [PR](https://github.com/getsentry/sentry-python/pull/3615) where we wanted to add support for `partial_json` in tool calling when streaming. This PR fixes that. cc...
Add the stack frame that happened before the try/except block to the exception event that is sent to Sentry. There should be options - to enable/disable this (enabled by default)...
WIP