We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3349cb8 commit e7a91d9Copy full SHA for e7a91d9
packages/apm/src/integrations/tracing.ts
@@ -561,7 +561,7 @@ export class Tracing implements Integration {
561
* @param transactionSpan The transaction span
562
*/
563
private static _addPerformanceEntries(transactionSpan: SpanClass): void {
564
- if (!global.performance) {
+ if (!global.performance || !global.performance.getEntries) {
565
// Gatekeeper if performance API not available
566
return;
567
}
0 commit comments