Skip to content

Commit 3a1f885

Browse files
committed
ref: Mark transactions as event.transaction in breadcrumbs
1 parent cf06091 commit 3a1f885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/browser/src/integrations/breadcrumbs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ function addSentryBreadcrumb(serializedData: string): void {
317317
const event = JSON.parse(serializedData);
318318
getCurrentHub().addBreadcrumb(
319319
{
320-
category: 'sentry',
320+
category: `sentry.${event.transaction ? 'transaction' : 'event'}`,
321321
event_id: event.event_id,
322322
level: event.level || Severity.fromString('error'),
323323
message: getEventDescription(event),

0 commit comments

Comments
 (0)