Skip to content
Draft
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
5 changes: 4 additions & 1 deletion src/sentry/search/eap/spans/attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,11 @@
search_type="string",
validator=is_event_id_or_list,
),
# We can use sentry.segment.name here because EAP coalesces the deprecated
# sentry.transaction alias to it.
ResolvedAttribute(
public_alias="transaction",
internal_name="sentry.transaction",
internal_name="sentry.segment.name",
search_type="string",
),
ResolvedAttribute(
Expand Down Expand Up @@ -658,6 +660,7 @@ def is_starred_segment_context_constructor(
# to return the new aliases, remove these temp mappings.
"sentry.description": "sentry.normalized_description",
"sentry.span_id": "id",
"sentry.transaction": "transaction",
"sentry.segment_name": "transaction",
},
"boolean": {
Expand Down
Loading