You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently Web Vitals onINP will return new attribution information that includes LoAF! Would be rad to get that stuff into INP transactions and into Sentry
Adds an option to trace long animation frames as per #11719. This
tracing feature is disabled by default.
Currently, this feature
https://developer.mozilla.org/en-US/docs/Web/API/Performance_API/Long_animation_frame_timing
is only supported by Chromium browsers.
Usage is opt-in:
```js
Sentry.init({
dsn: '__PUBLIC_DSN__',
integrations: [
Sentry.browserTracingIntegration({
enableLongAnimationFrame: true,
}),
],
tracesSampleRate: 1,
});
```
Problem Statement
https://developer.mozilla.org/en-US/docs/Web/API/Performance_API/Long_animation_frame_timing
Solution Brainstorm
Get information about long animation frames and understand why they happening. We can create spans around these long animation frames.
This can essentially replace current usage of long tasks API
The text was updated successfully, but these errors were encountered: