Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 11 additions & 0 deletions sentry_sdk/traces.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,17 @@ def _end(self, end_timestamp: "Optional[Union[float, datetime]]" = None) -> None
self.set_attribute("sentry.segment.id", self._segment.span_id)
self.set_attribute("sentry.segment.name", self._segment.name)

# Set conversation ID if one is set and this is a correct kind of span
conversation_id = self._scope.get_conversation_id()
if conversation_id:
has_ai_operation_name = SPANDATA.GEN_AI_OPERATION_NAME in self._attributes
op = self._attributes.get("sentry.op")
has_gen_ai_op = isinstance(op, str) and (
op.startswith("ai.") or op.startswith("gen_ai.")
)
if has_ai_operation_name or has_gen_ai_op:
self.set_attribute("gen_ai.conversation.id", conversation_id)

# Set the end timestamp
if end_timestamp is not None:
if isinstance(end_timestamp, (float, int)):
Expand Down
225 changes: 225 additions & 0 deletions tests/tracing/test_conversation_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,32 @@ def test_conversation_id_propagates_to_span_with_gen_ai_operation_name(
assert span_data.get("gen_ai.conversation.id") == "conv-op-name-test"


def test_conversation_id_propagates_to_span_with_gen_ai_operation_name_span_streaming(
sentry_init, capture_items
):
"""Span with gen_ai.operation.name attribute should get conversation_id."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-op-name-test")

with sentry_sdk.traces.start_span(name="test-sg"):
with sentry_sdk.traces.start_span(
name="client", attributes={"sentry.op": "http.client"}
) as span:
span.set_attribute("gen_ai.operation.name", "chat")

sentry_sdk.flush()

(
span,
segment,
) = [item.payload for item in items]
assert span["attributes"].get("gen_ai.conversation.id") == "conv-op-name-test"
assert "gen_ai.conversation.id" not in segment["attributes"]


def test_conversation_id_propagates_to_span_with_ai_op(sentry_init, capture_events):
"""Span with ai.* op should get conversation_id."""
sentry_init(traces_sample_rate=1.0)
Expand All @@ -40,6 +66,32 @@ def test_conversation_id_propagates_to_span_with_ai_op(sentry_init, capture_even
assert span_data.get("gen_ai.conversation.id") == "conv-ai-op-test"


def test_conversation_id_propagates_to_span_with_ai_op_span_streaming(
sentry_init, capture_items
):
"""Span with ai.* op should get conversation_id."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-ai-op-test")

with sentry_sdk.traces.start_span(name="test-tx"):
with sentry_sdk.traces.start_span(
name="completion", attributes={"sentry.op": "ai.chat.completions"}
):
pass

sentry_sdk.flush()

(
span,
segment,
) = [item.payload for item in items]
assert span["attributes"].get("gen_ai.conversation.id") == "conv-ai-op-test"
assert "gen_ai.conversation.id" not in segment["attributes"]


@pytest.mark.parametrize("stream_gen_ai_spans", [True, False])
def test_conversation_id_propagates_to_span_with_gen_ai_op(
sentry_init, capture_events, capture_items, stream_gen_ai_spans
Expand Down Expand Up @@ -78,6 +130,35 @@ def test_conversation_id_propagates_to_span_with_gen_ai_op(
assert span_data.get("gen_ai.conversation.id") == "conv-gen-ai-op-test"


def test_conversation_id_propagates_to_span_with_gen_ai_op_span_streaming(
sentry_init,
capture_items,
):
"""Span with gen_ai.* op should get conversation_id."""
sentry_init(
traces_sample_rate=1.0,
trace_lifecycle="stream",
)

items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-gen-ai-op-test")

with sentry_sdk.traces.start_span(name="test-tx"):
with sentry_sdk.traces.start_span(
name="invoke", attributes={"sentry.op": "gen_ai.invoke_agent"}
):
pass

sentry_sdk.flush()

span, segment = [item.payload for item in items]

assert span["attributes"].get("gen_ai.conversation.id") == "conv-gen-ai-op-test"
assert "gen_ai.conversation.id" not in segment["attributes"]


def test_conversation_id_not_propagated_to_non_ai_span(sentry_init, capture_events):
"""Non-AI span should NOT get conversation_id."""
sentry_init(traces_sample_rate=1.0)
Expand All @@ -95,6 +176,32 @@ def test_conversation_id_not_propagated_to_non_ai_span(sentry_init, capture_even
assert "gen_ai.conversation.id" not in span_data


def test_conversation_id_not_propagated_to_non_ai_span_span_streaming(
sentry_init, capture_items
):
"""Non-AI span should NOT get conversation_id."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-should-not-appear")

with sentry_sdk.traces.start_span(name="test-sg"):
with sentry_sdk.traces.start_span(
name="client", attributes={"sentry.op": "http.client"}
) as span:
span.set_attribute("some.other.data", "value")

sentry_sdk.flush()

(
span,
segment,
) = [item.payload for item in items]
assert "gen_ai.conversation.id" not in span["attributes"]
assert "gen_ai.conversation.id" not in segment["attributes"]


def test_conversation_id_not_propagated_when_not_set(sentry_init, capture_events):
"""AI span should not have conversation_id if not set on scope."""
sentry_init(traces_sample_rate=1.0)
Expand All @@ -113,6 +220,32 @@ def test_conversation_id_not_propagated_when_not_set(sentry_init, capture_events
assert "gen_ai.conversation.id" not in span_data


def test_conversation_id_not_propagated_when_not_set_span_streaming(
sentry_init, capture_items
):
"""AI span should not have conversation_id if not set on scope."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.remove_conversation_id()

with sentry_sdk.traces.start_span(name="test-sg"):
with sentry_sdk.traces.start_span(
name="completion", attributes={"sentry.op": "ai.chat.completions"}
):
pass

sentry_sdk.flush()

(
span,
segment,
) = [item.payload for item in items]
assert "gen_ai.conversation.id" not in span["attributes"]
assert "gen_ai.conversation.id" not in segment["attributes"]


def test_conversation_id_not_propagated_to_span_without_op(sentry_init, capture_events):
"""Span without op and without gen_ai.operation.name should NOT get conversation_id."""
sentry_init(traces_sample_rate=1.0)
Expand All @@ -130,6 +263,30 @@ def test_conversation_id_not_propagated_to_span_without_op(sentry_init, capture_
assert "gen_ai.conversation.id" not in span_data


def test_conversation_id_not_propagated_to_span_without_op_span_streaming(
sentry_init, capture_items
):
"""Span without op and without gen_ai.operation.name should NOT get conversation_id."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-no-op-test")

with sentry_sdk.traces.start_span(name="test-sg"):
with sentry_sdk.traces.start_span(name="unnamed-span") as span:
span.set_attribute("regular.data", "value")

sentry_sdk.flush()

(
span,
segment,
) = [item.payload for item in items]
assert "gen_ai.conversation.id" not in span["attributes"]
assert "gen_ai.conversation.id" not in segment["attributes"]


def test_conversation_id_propagates_with_gen_ai_operation_name_no_op(
sentry_init, capture_events
):
Expand All @@ -149,6 +306,32 @@ def test_conversation_id_propagates_with_gen_ai_operation_name_no_op(
assert span_data.get("gen_ai.conversation.id") == "conv-no-op-but-data-test"


def test_conversation_id_propagates_with_gen_ai_operation_name_no_op_span_streaming(
sentry_init, capture_items
):
"""Span with gen_ai.operation.name but no op should still get conversation_id."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-no-op-but-data-test")

with sentry_sdk.traces.start_span(name="test-sg"):
with sentry_sdk.traces.start_span(name="unnamed-span") as span:
span.set_attribute("gen_ai.operation.name", "embedding")

sentry_sdk.flush()

(
span,
segment,
) = [item.payload for item in items]
assert (
span["attributes"].get("gen_ai.conversation.id") == "conv-no-op-but-data-test"
)
assert "gen_ai.conversation.id" not in segment["attributes"]


def test_conversation_id_propagates_to_transaction_with_ai_op(
sentry_init, capture_events
):
Expand All @@ -167,6 +350,27 @@ def test_conversation_id_propagates_to_transaction_with_ai_op(
assert trace_data.get("gen_ai.conversation.id") == "conv-tx-ai-op-test"


def test_conversation_id_propagates_to_segment_with_ai_op_span_streaming(
sentry_init, capture_items
):
"""Segment with ai.* op should get conversation_id."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-tx-ai-op-test")

with sentry_sdk.traces.start_span(
name="AI Workflow", attributes={"sentry.op": "ai.workflow"}
):
pass

sentry_sdk.flush()

(segment,) = [item.payload for item in items]
assert segment["attributes"].get("gen_ai.conversation.id") == "conv-tx-ai-op-test"


def test_conversation_id_not_propagated_to_non_ai_transaction(
sentry_init, capture_events
):
Expand All @@ -183,3 +387,24 @@ def test_conversation_id_not_propagated_to_non_ai_transaction(
(event,) = events
trace_data = event["contexts"]["trace"]["data"]
assert "gen_ai.conversation.id" not in trace_data


def test_conversation_id_not_propagated_to_non_ai_segment_span_streaming(
sentry_init, capture_items
):
"""Non-AI segment should NOT get conversation_id."""
sentry_init(traces_sample_rate=1.0, trace_lifecycle="stream")
items = capture_items("span")

scope = sentry_sdk.get_current_scope()
scope.set_conversation_id("conv-tx-should-not-appear")

with sentry_sdk.traces.start_span(
name="HTTP Request", attributes={"sentry.op": "http.server"}
):
pass

sentry_sdk.flush()

(segment,) = [item.payload for item in items]
assert "gen_ai.conversation.id" not in segment["attributes"]
Loading