@@ -136,6 +136,7 @@ def log_snuba_info(content):
136
136
"transaction" : "segment_name" ,
137
137
"transaction.id" : "transaction_id" ,
138
138
"segment.id" : "segment_id" ,
139
+ "transaction.span_id" : "segment_id" ,
139
140
"transaction.op" : "transaction_op" ,
140
141
"user" : "user" ,
141
142
"user.id" : "sentry_tags[user.id]" ,
@@ -198,7 +199,11 @@ def log_snuba_info(content):
198
199
"timestamp" : "timestamp" ,
199
200
"trace" : "trace_id" ,
200
201
"transaction" : "segment_name" ,
202
+ # `transaction.id` and `segment.id` is going to be replaced by `transaction.span_id` please do not use
203
+ # transaction.id is "wrong", its pointing to segment_id to return something for the transistion, but represents the
204
+ # txn event id(32 char uuid). EAP will no longer be storing this.
201
205
"transaction.id" : "segment_id" ,
206
+ "transaction.span_id" : "segment_id" ,
202
207
"transaction.method" : "attr_str[transaction.method]" ,
203
208
"is_transaction" : "is_segment" ,
204
209
"segment.id" : "segment_id" ,
0 commit comments