Skip to content

Commit f984dc8

Browse files
authored
fix: Use proper type name for op (getsentry#2584)
* fix: Use proper type name for op * chore: Changelog * ref: CodeReview
1 parent 3c5ae92 commit f984dc8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7+
- [apm] fix: Use proper type name for op #2584
8+
79
## 5.16.0
810

911
- [core] feat: Send transactions in envelopes (#2553)

packages/apm/src/integrations/tracing.ts

+2-2
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)