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 b0a0cd9 commit 1a6a4d9Copy full SHA for 1a6a4d9
packages/apm/src/integrations/tracing.ts
@@ -189,7 +189,7 @@ export class Tracing implements Integration {
189
const oldCallback = performance.onresourcetimingbufferfull;
190
performance.onresourcetimingbufferfull = function(_event: unknown): void {
191
logger.warn('[Tracing]: Resource Timing Buffer is FULL! Increasing it to 300');
192
- performance.setResourceTimingBufferSize(300);
+ performance.setResourceTimingBufferSize(Tracing._performanceCursor * 2);
193
if (oldCallback) {
194
oldCallback.apply(this, arguments);
195
}
0 commit comments