We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c5ae92 commit f984dc8Copy full SHA for f984dc8
CHANGELOG.md
@@ -4,6 +4,8 @@
4
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
7
+- [apm] fix: Use proper type name for op #2584
8
+
9
## 5.16.0
10
11
- [core] feat: Send transactions in envelopes (#2553)
packages/apm/src/integrations/tracing.ts
@@ -493,8 +493,8 @@ export class Tracing implements Integration {
493
case 'paint':
494
case 'measure':
495
const mark = transactionSpan.child({
496
- description: `${entry.entryType} ${entry.name}`,
497
- op: 'mark',
+ description: entry.name,
+ op: entry.entryType,
498
});
499
mark.startTimestamp = timeOrigin + startTime;
500
mark.timestamp = mark.startTimestamp + duration;
0 commit comments