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
Strawman proposal: We add a sessioIntegration() with the following options:
interfaceSessionIntegrationOptions{/** * The storage type that the SDK uses to store a Session ID that is used for Sessions and Release Health in Sentry. * * Possible values: * * - `"sessionStorage"` (default) The Session ID is persisted to the browser's `sessionStorage`. Sessions will persist across hard-navigations on the same origin. * - `"memory"` The Session ID is stored in memory. Hard-navigations will produce new sessions. * * Defaults to `"sessionStorage"`. */persistence?: 'sessionStorage'|'memory'}
Description
Session updates we send from the Browser SDK should no longer be per pageview. They should have the same lifetime as a Session Replay session.
The text was updated successfully, but these errors were encountered: