Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a139626
feat(sqlalchemy): Support span streaming
alexander-alderman-webb Apr 24, 2026
38b5933
.
alexander-alderman-webb Apr 24, 2026
3d89b9e
.
alexander-alderman-webb Apr 24, 2026
b1fa3b5
.
alexander-alderman-webb Apr 24, 2026
9929f55
.
alexander-alderman-webb Apr 24, 2026
75c0cc1
.
alexander-alderman-webb Apr 24, 2026
ad4e14d
fix mypy
alexander-alderman-webb Apr 24, 2026
2bf7c77
.
alexander-alderman-webb Apr 24, 2026
f873d09
.
alexander-alderman-webb Apr 24, 2026
56ee084
add type ignores
alexander-alderman-webb Apr 24, 2026
2c22c16
move query source before exit
alexander-alderman-webb Apr 24, 2026
f9faa2f
.
alexander-alderman-webb Apr 24, 2026
064dd83
use separate path for streaming
alexander-alderman-webb Apr 24, 2026
4b965c4
use separate path for streaming
alexander-alderman-webb Apr 24, 2026
98c67f0
remove print
alexander-alderman-webb Apr 24, 2026
2877f7b
Merge branch 'master' into webb/sqlalchemy/span-first
alexander-alderman-webb Apr 27, 2026
f20dfc6
update tests
alexander-alderman-webb Apr 27, 2026
6322ad0
add missing code.namespace assertions
alexander-alderman-webb Apr 27, 2026
193f790
use non-deprecated attributes
alexander-alderman-webb Apr 28, 2026
4a7414e
use old attributes for legacy path
alexander-alderman-webb Apr 28, 2026
5efa060
.
alexander-alderman-webb Apr 28, 2026
639318f
consistently early exit
alexander-alderman-webb Apr 28, 2026
e71988a
use non-deprecated attributes in tests
alexander-alderman-webb Apr 28, 2026
ff174f8
stop setting undocumented attributes
alexander-alderman-webb Apr 28, 2026
47f5a6b
add comment
alexander-alderman-webb Apr 28, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions sentry_sdk/integrations/sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
ensure_integration_enabled,
parse_version,
)
from sentry_sdk.traces import StreamedSpan, SpanStatus

try:
from sqlalchemy.engine import Engine # type: ignore
Expand All @@ -20,6 +21,7 @@
from typing import Any
from typing import ContextManager
from typing import Optional
from typing import Union

from sentry_sdk.tracing import Span

Expand Down Expand Up @@ -96,7 +98,10 @@ def _handle_error(context: "Any", *args: "Any") -> None:
span: "Optional[Span]" = getattr(execution_context, "_sentry_sql_span", None)

if span is not None:
span.set_status(SPANSTATUS.INTERNAL_ERROR)
if isinstance(span, StreamedSpan):
span.status = SpanStatus.ERROR
else:
span.set_status(SPANSTATUS.INTERNAL_ERROR)
Comment thread
alexander-alderman-webb marked this conversation as resolved.

# _after_cursor_execute does not get called for crashing SQL stmts. Judging
# from SQLAlchemy codebase it does seem like any error coming into this
Comment thread
alexander-alderman-webb marked this conversation as resolved.
Expand Down Expand Up @@ -132,15 +137,20 @@ def _get_db_system(name: str) -> "Optional[str]":
return None


def _set_db_data(span: "Span", conn: "Any") -> None:
def _set_db_data(span: "Union[Span, StreamedSpan]", conn: "Any") -> None:
if isinstance(span, StreamedSpan):
set_on_span = span.set_attribute
else:
set_on_span = span.set_data

db_system = _get_db_system(conn.engine.name)
if db_system is not None:
span.set_data(SPANDATA.DB_SYSTEM, db_system)
set_on_span(SPANDATA.DB_SYSTEM, db_system)
Comment thread
alexander-alderman-webb marked this conversation as resolved.
Outdated

try:
driver = conn.dialect.driver
if driver:
span.set_data(SPANDATA.DB_DRIVER_NAME, driver)
set_on_span(SPANDATA.DB_DRIVER_NAME, driver)
except Exception:
pass

Expand All @@ -149,12 +159,12 @@ def _set_db_data(span: "Span", conn: "Any") -> None:

db_name = conn.engine.url.database
if db_name is not None:
span.set_data(SPANDATA.DB_NAME, db_name)
set_on_span(SPANDATA.DB_NAME, db_name)
Comment thread
alexander-alderman-webb marked this conversation as resolved.
Outdated

server_address = conn.engine.url.host
if server_address is not None:
span.set_data(SPANDATA.SERVER_ADDRESS, server_address)
set_on_span(SPANDATA.SERVER_ADDRESS, server_address)

server_port = conn.engine.url.port
if server_port is not None:
span.set_data(SPANDATA.SERVER_PORT, server_port)
set_on_span(SPANDATA.SERVER_PORT, server_port)
57 changes: 42 additions & 15 deletions sentry_sdk/tracing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,10 @@ def record_sql_queries(
executemany: bool,
record_cursor_repr: bool = False,
span_origin: str = "manual",
) -> "Generator[sentry_sdk.tracing.Span, None, None]":
) -> "Generator[Union[sentry_sdk.tracing.Span, sentry_sdk.traces.StreamedSpan], None, None]":
# TODO: Bring back capturing of params by default
if sentry_sdk.get_client().options["_experiments"].get("record_sql_params", False):
client = sentry_sdk.get_client()
if client.options["_experiments"].get("record_sql_params", False):
if not params_list or params_list == [None]:
params_list = None

Expand All @@ -160,14 +161,26 @@ def record_sql_queries(
with capture_internal_exceptions():
sentry_sdk.add_breadcrumb(message=query, category="query", data=data)

with sentry_sdk.start_span(
op=OP.DB,
name=query,
origin=span_origin,
) as span:
for k, v in data.items():
span.set_data(k, v)
yield span
if has_span_streaming_enabled(client.options):
with sentry_sdk.traces.start_span(
name="<unknown SQL query>" if query is None else query,
attributes={
"sentry.origin": span_origin,
"sentry.op": OP.DB,
},
) as span:
for k, v in data.items():
span.set_attribute(k, v)
yield span
Comment thread
alexander-alderman-webb marked this conversation as resolved.
else:
with sentry_sdk.start_span(
op=OP.DB,
name=query,
Comment thread
alexander-alderman-webb marked this conversation as resolved.
origin=span_origin,
) as span:
for k, v in data.items():
span.set_data(k, v)
yield span


def maybe_create_breadcrumbs_from_span(
Expand Down Expand Up @@ -313,22 +326,36 @@ def add_source(
span.set_attribute("code.function.name", frame.f_code.co_name)


def add_query_source(span: "sentry_sdk.tracing.Span") -> None:
def add_query_source(
span: "Union[sentry_sdk.tracing.Span, sentry_sdk.traces.StreamedSpan]",
) -> None:
"""
Adds OTel compatible source code information to a database query span
"""
client = sentry_sdk.get_client()
if not client.is_active():
return

if span.timestamp is None or span.start_timestamp is None:
if isinstance(span, LegacySpan):
if not client.is_active():
return
Comment thread
alexander-alderman-webb marked this conversation as resolved.
Outdated
Comment thread
alexander-alderman-webb marked this conversation as resolved.
Outdated

# In the StreamedSpan case, we need to add the extra span information before
# the span finishes, so it's expected that this will be None. In the LegacySpan case,
# it should already be finished.
if span.timestamp is None:
return

if span.start_timestamp is None:
return

should_add_query_source = client.options.get("enable_db_query_source", True)
if not should_add_query_source:
return

duration = span.timestamp - span.start_timestamp
end_timestamp = (
datetime.now(timezone.utc) if span.timestamp is None else span.timestamp
)

duration = end_timestamp - span.start_timestamp
threshold = client.options.get("db_query_source_threshold_ms", 0)
slow_query = duration / timedelta(milliseconds=1) > threshold

Expand Down
28 changes: 20 additions & 8 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,24 +476,36 @@

@pytest.fixture
def render_span_tree():
def inner(event):
assert event["type"] == "transaction"
def inner(spans, root_span=None):
streamed_spans = False
if root_span is None:
streamed_spans = True

by_parent = {}
for span in event["spans"]:
for span in spans:
print(span)
Comment thread
alexander-alderman-webb marked this conversation as resolved.
Outdated
if "parent_span_id" not in span:
root_span = span
continue
Comment thread
alexander-alderman-webb marked this conversation as resolved.

Comment thread
alexander-alderman-webb marked this conversation as resolved.
by_parent.setdefault(span["parent_span_id"], []).append(span)

def render_span(span):
yield "- op={}: description={}".format(
json.dumps(span.get("op")), json.dumps(span.get("description"))
)
if streamed_spans:
yield "- sentry.op={}: name={}".format(
json.dumps(span["attributes"].get("sentry.op")),
json.dumps(span["name"]),
)
else:
yield "- op={}: description={}".format(
json.dumps(span.get("op")), json.dumps(span.get("description"))
)

for subspan in by_parent.get(span["span_id"]) or ():
for line in render_span(subspan):
yield " {}".format(line)

root_span = event["contexts"]["trace"]

return "\n".join(render_span(root_span))

Check warning on line 508 in tests/conftest.py

View check run for this annotation

@sentry/warden / warden: find-bugs

render_span_tree may crash if no root span found in streamed spans

When `root_span=None` and no span in `spans` lacks a `parent_span_id`, the `root_span` variable will remain `None`. The subsequent call to `render_span(root_span)` at line 508 will fail with a `TypeError` when attempting to access `span["attributes"]` or `span["span_id"]` on `None`. While valid span data should always include a root span, edge cases or corrupted data could trigger this crash.

return inner

Expand Down
3 changes: 2 additions & 1 deletion tests/integrations/django/asgi/test_asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,9 @@ async def test_async_middleware_spans(

(transaction,) = events

assert transaction["type"] == "transaction"
assert (
render_span_tree(transaction)
render_span_tree(transaction["spans"], transaction["contexts"]["trace"])
== """\
- op="http.server": description=null
- op="event.django": description="django.db.reset_queries"
Expand Down
33 changes: 25 additions & 8 deletions tests/integrations/django/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ def test_response_trace(sentry_init, client, capture_events, render_span_tree):

assert (
'- op="view.response.render": description="serialize response"'
in render_span_tree(events[0])
in render_span_tree(events[0]["spans"], events[0]["contexts"]["trace"])
)


Expand Down Expand Up @@ -596,7 +596,9 @@ def test_django_connect_trace(sentry_init, client, capture_events, render_span_t
data = span.get("data")
assert data.get(SPANDATA.DB_SYSTEM) == "postgresql"

assert '- op="db": description="connect"' in render_span_tree(event)
assert '- op="db": description="connect"' in render_span_tree(
event["spans"], event["contexts"]["trace"]
)


@pytest.mark.forked
Expand Down Expand Up @@ -954,7 +956,9 @@ def test_render_spans(sentry_init, client, capture_events, render_span_tree):
events = capture_events()
client.get(url)
transaction = events[0]
assert expected_line in render_span_tree(transaction)
assert expected_line in render_span_tree(
transaction["spans"], transaction["contexts"]["trace"]
)


@pytest.mark.skipif(DJANGO_VERSION < (1, 9), reason="Requires Django >= 1.9")
Expand Down Expand Up @@ -1034,7 +1038,10 @@ def test_middleware_spans(sentry_init, client, capture_events, render_span_tree)
message, transaction = events

assert message["message"] == "hi"
assert render_span_tree(transaction) == EXPECTED_MIDDLEWARE_SPANS
assert (
render_span_tree(transaction["spans"], transaction["contexts"]["trace"])
== EXPECTED_MIDDLEWARE_SPANS
)


def test_middleware_spans_disabled(sentry_init, client, capture_events):
Expand Down Expand Up @@ -1075,7 +1082,10 @@ def test_signals_spans(sentry_init, client, capture_events, render_span_tree):
message, transaction = events

assert message["message"] == "hi"
assert render_span_tree(transaction) == EXPECTED_SIGNALS_SPANS
assert (
render_span_tree(transaction["spans"], transaction["contexts"]["trace"])
== EXPECTED_SIGNALS_SPANS
)

assert transaction["spans"][0]["op"] == "event.django"
assert transaction["spans"][0]["description"] == "django.db.reset_queries"
Expand Down Expand Up @@ -1127,7 +1137,10 @@ def test_signals_spans_filtering(sentry_init, client, capture_events, render_spa

(transaction,) = events

assert render_span_tree(transaction) == EXPECTED_SIGNALS_SPANS_FILTERED
assert (
render_span_tree(transaction["spans"], transaction["contexts"]["trace"])
== EXPECTED_SIGNALS_SPANS_FILTERED
)

assert transaction["spans"][0]["op"] == "event.django"
assert transaction["spans"][0]["description"] == "django.db.reset_queries"
Expand Down Expand Up @@ -1206,7 +1219,9 @@ def test_custom_urlconf_middleware(
event = events.pop(0)
assert event["transaction"] == "/custom/ok"
if middleware_spans:
assert "custom_urlconf_middleware" in render_span_tree(event)
assert "custom_urlconf_middleware" in render_span_tree(
event["spans"], event["contexts"]["trace"]
)

_content, status, _headers = unpack_werkzeug_response(client.get("/custom/exc"))
assert status.lower() == "500 internal server error"
Expand All @@ -1216,7 +1231,9 @@ def test_custom_urlconf_middleware(
assert error_event["exception"]["values"][-1]["mechanism"]["type"] == "django"
assert transaction_event["transaction"] == "/custom/exc"
if middleware_spans:
assert "custom_urlconf_middleware" in render_span_tree(transaction_event)
assert "custom_urlconf_middleware" in render_span_tree(
transaction_event["spans"], transaction_event["contexts"]["trace"]
)

settings.MIDDLEWARE.pop(0)

Expand Down
Loading
Loading