sentry-python
sentry-python copied to clipboard
The official Python SDK for Sentry.io
[opened by @szokeasaurusrex] There are multiple problems with [this test](https://github.com/getsentry/sentry-python/blob/be229121608feba3033dbe84ef1884b6ba6ad3ee/tests/test_transport.py#L146): * The test is flaky (specifically on Python 3.10) * The flakes appear related to asserting that `stdout` and `stderr`...
Similar to this documentation:[https://docs.sentry.io/platforms/python/tracing/instrumentation/custom-instrumentation/queues-module/](https://docs.sentry.io/platforms/python/tracing/instrumentation/custom-instrumentation/queues-module/)
Similar to this one: [https://develop.sentry.dev/sdk/telemetry/traces/modules/llm-monitoring/](https://develop.sentry.dev/sdk/telemetry/traces/modules/llm-monitoring/) Note: "LLM monitoring" (or "AI monitoring") is the old insights module, we are now creating the new "Agents Insights Module".
Our [generated API docs](https://getsentry.github.io/sentry-python) need some love. We should make sure: - All public API is correct for version 2.x and 3.x of the SDK. - All public API has...
### Problem Statement Support for [pytriton](https://github.com/triton-inference-server/pytriton) ### Solution Brainstorm Support for [pytriton](https://github.com/triton-inference-server/pytriton)
- If a `TracerProvider` already exists, patch it. `TracerProvider` is a singleton, so if we aren't the first ones setting it up, we need to use the existing one. -...
It's kinda gonna be a pain to maintain this if we might add/remove imports in the future. Perhaps we could just check that the value here is an `int`? Or...
We want to make it possible to send logging data to Sentry. For this we want to - add a clean logging API to the SDK and - update our...
### How do you use Sentry? Sentry Saas (sentry.io) ### Version all ### Steps to Reproduce Run this demo application: https://github.com/antonpirker/testing-sentry/blob/main/test-fastapi-streaming-response/main.py ### Expected Result The spans created in the response...
### Problem Statement `structlog` logs can be sent to Sentry via the existing `LoggingIntegration`; however, this does not preserve the structuring of the logs (e.g. if the logs have custom...