Billy Vong
Billy Vong
We currently show a DOM node count in the UI, but it's calculated on the frontend/UI side which is quite expensive. We should instead calculate this on SDK ([source](https://github.com/getsentry/sentry-javascript/blob/5a5523e6675d54309066e616d92f5a7da8af99ab/packages/replay-internal/src/replay.ts#L1128)) by...
Seeing a potential cycle with canvas replay web worker. Stack trace looks something like this: ``` sendBufferedReplayOrFlush startRecording ... getCanvasMananger new CanvasManager initFPSWorker new window.Worker ``` Then the part that...
Expose `recordingMode` in replay's public API. https://github.com/getsentry/sentry-javascript/issues/12664 is an example use-case where user needs to make a `flush()` decision based on `recordingMode`.
A new "AI Summary" tab was added to the Replay Details page. * The `TabKey` enum in `static/app/utils/replays/hooks/useActiveReplayTab.tsx` was updated to include `AI_SUMMARY`, and it was added to `supportedVideoTabs` for...
**Version and OS** N/A **Is your feature request related to a problem? Please describe.** I'm trying to use the price/restock feature for this page: https://ca.store.bambulab.com/products/a1?id=578486977317920776 which gives me this error...
## Issue Type - [X] Feature request ## Description Maybe I'm misunderstanding the purpose of the review, but how should we properly evaluate if a detection is "correct" or not?...
This adds a new onboarding page for Seer, currently feature flagged for sentry-test and sentry-sdks orgs. access via hard-coded url: `/settings/seer/onboarding-v2/`
### Description In the `_runFlush()` method, we have a try/catch around a block of code that [emits the following 2 outcomes](https://github.com/getsentry/sentry-javascript/blob/develop/packages/replay-internal/src/replay.ts#L1221-L1222): `ratelimit_backoff` and `send_error`. However, within the `try` block we...
I'm running into a TS issue: ``` Cannot compile modules using option 'outFile' unless the '--module' flag is 'amd' or 'system'.ts(6131) ``` I'm trying to import a TS interface e.g....