Ivana Kellyer

Results 51 issues of Ivana Kellyer

### Problem Statement Django `5.1b1` is now available. The final release is [expected in August 2024](https://www.djangoproject.com/download/). ### Solution Brainstorm * add to test suite * test manually * fix whatever...

Enhancement
Integration: Django

### Problem Statement Currently, we can only instrument everything with Sentry, or everything with OTel, there is no in-between. Investigate whether we can have an allowlist of instrumentations to be...

Integration: OpenTelementry (OTel)

No RC yet, just some beta releases, but we can already start setting stuff up. 3.13 release schedule: https://peps.python.org/pep-0719/#schedule

Do not merge
Python:3.13

Follow up to detect regressions like https://github.com/getsentry/sentry-python/issues/3021. Verified that the new test fails if I reintroduce the async ensure decorator. The new Uvicorn fixture might be also useful for other...

Component: Tests
Integration: Starlette/FastAPI

### Problem Statement With the release of 2.0, [most of our integrations are now auto enabling](https://docs.sentry.io/platforms/python/integrations/). Conversely, turning a specific integration off is now much more tedious (have to set...

Enhancement
Component: SDK Core

## DESCRIBE YOUR PR Bringing the Python integrations page a bit closer to [Node's](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/) with more examples, config options, etc. * add examples for different integrations-related config options to the...

### Purpose/Motivation We've been seeing some disconnected spans in https://github.com/getsentry/sentry-python/issues/3169. Since there's a new major version of the SDK that includes significant changes, we first want to check whether the...

Breadcrumbs need to work whether tracing is on or not. We were using span data to populate them. This wouldn't work if tracing was off.

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...

Project: POTel (Phase 1)