Skip to content

Commit 79d7297

Browse files
committed
fix: Use proper type name for op
1 parent 49f29e1 commit 79d7297

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/apm/src/integrations/tracing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,8 @@ export class Tracing implements Integration {
493493
case 'paint':
494494
case 'measure':
495495
const mark = transactionSpan.child({
496-
description: `${entry.entryType} ${entry.name}`,
497-
op: 'mark',
496+
description: `${entry.name}`,
497+
op: entry.entryType,
498498
});
499499
mark.startTimestamp = timeOrigin + startTime;
500500
mark.timestamp = mark.startTimestamp + duration;

0 commit comments

Comments
 (0)