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
It is possible that a lot of replay breadcrumbs are captured in a short amount of time. E.g. if a page makes continuously hundreds of API requests, we will always capture them all.
We should limit this to a certain upper limit, throttling this for a given time frame.
Proposal
We allow up to 500 breadcrumbs per minute. Anything over this will be discarded. This is a moving window, meaning that a breadcrumb will stop counting towards the limit after 60s.
The text was updated successfully, but these errors were encountered:
This updates custom breadcrumb handling to be throttled to max. 300
breadcrumbs/5s.
If we exceed this amount of breadcrumbs, we drop any further breadcrumbs
and instead add a single breadcrumb with `category: 'replay.throttled'`,
which the UI can use to indicate that _something_ was dropped.
Closes#8072
---------
Co-authored-by: Billy Vong <[email protected]>
It is possible that a lot of replay breadcrumbs are captured in a short amount of time. E.g. if a page makes continuously hundreds of API requests, we will always capture them all.
We should limit this to a certain upper limit, throttling this for a given time frame.
Proposal
We allow up to 500 breadcrumbs per minute. Anything over this will be discarded. This is a moving window, meaning that a breadcrumb will stop counting towards the limit after 60s.
The text was updated successfully, but these errors were encountered: