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 059508c commit 9782eafCopy full SHA for 9782eaf
packages/tracing-internal/src/browser/browserTracingIntegration.ts
@@ -522,6 +522,7 @@ function isPerformanceEventTiming(entry: PerformanceEntry): entry is Performance
522
return 'duration' in entry;
523
}
524
525
+/** We store up to 10 interaction candidates max to cap memory usage. This is the same cap as getINP from web-vitals */
526
const MAX_INTERACTIONS = 10;
527
528
/** Creates a listener on interaction entries, and maps interactionIds to the origin path of the interaction */
0 commit comments