Skip to content

Commit

Permalink
feat(spans): Add more user columns to spans (#71103)
Browse files Browse the repository at this point in the history
As of getsentry/relay#3599, we're now extracting a few more user related
columns on spans for searching.
  • Loading branch information
Zylphrex authored and cmanallen committed May 21, 2024
1 parent 7029197 commit 52f5d34
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sentry/utils/snuba.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ def log_snuba_info(content):
"segment.id": "segment_id",
"transaction.op": "transaction_op",
"user": "user",
"user.id": "sentry_tags[user.id]",
"user.email": "sentry_tags[user.email]",
"user.username": "sentry_tags[user.username]",
"profile_id": "profile_id", # deprecated in favour of `profile.id`
"profile.id": "profile_id",
"cache.hit": "sentry_tags[cache.hit]",
Expand Down

0 comments on commit 52f5d34

Please sign in to comment.