Francesco Gringl-Novy

Results 428 comments of Francesco Gringl-Novy

This _can_ be configured, maybe we need to state this more explicitly in docs, but you can set `new Replay({ minReplayDuration: 0 })` to basically disable this check. Not sure...

Could you provide a link to your replay on Sentry SaaS, then I can take a look. What exactly is not working for you? Is the replay not being sent...

> My solution towards this problem will be, implementing a "**pageunload**" event listener and as soon as it gets triggered store the events/data in session-storage. when starting the recording again...

> @mydea I have 2 questions, > > 1. Will it delay the refresh of the page? > 2. If the data is being sent and we reload the page....

In my tests, this config worked reasonably well: ```js replayIntegration({ minReplayDuration: 0, flushMinDelay: 200, flushMaxDelay: 250, }) ``` There is still the possibility for stuff to be lost, but it...

thanks for the update! Did you also add this: ```js window.addEventListener("beforeunload", () => { Sentry.getReplay()?.flush(); }); ``` This _may_ help with capturing additional data. We will look into this some...

I think the absence of the log does not necessarily mean it does not flush, it depends if the flushing http request is finished in the background 🤔 which it...

Hey, thank you for your feedback! @s1gr1d is out today, she can answer in more detail on Monday! Generally speaking, the main challenge we have is that we need to...

> Looks good, thanks for adding this test! Would it make sense to also add one with `.cjs`? We can def. do this! Though this is transpiled to cjs, so...

Thank you for opening this, and for the repro app! We will look into this to figure out what's going on. We started creating E2E test apps testing custom otel...