Session replay #145
-
Are you planning to add support for the newly released Session Replay feature of Sentry? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Keep in mind that this is currently a beta feature. So I am not planning or looking into it at this moment. That said, I peeked at: https://docs.sentry.io/platforms/javascript/session-replay/. And it looked like the Browser bundle is all you need but looking here: https://docs.sentry.io/platforms/javascript/install/cdn/ it seems it requires another bundle to be loaded. I'm not sure how many bundles I want to keep adding so I might need to think a little about allowing these to be loaded from the CDN instead of bundling them. But the bundle seems to be the only thing needed. Setting options and adding integrations you can already do today. Not sure anything else is needed? |
Beta Was this translation helpful? Give feedback.
-
Session Replays SDK has been added: https://github.com/stayallive/wp-sentry/releases/tag/v6.10.0 You can start by setting the following constants: // https://docs.sentry.io/platforms/javascript/session-replay/configuration/#general-integration-configuration
define( 'WP_SENTRY_BROWSER_REPLAYS_SESSION_SAMPLE_RATE', 0.1 ); // replaysSessionSampleRate
define( 'WP_SENTRY_BROWSER_REPLAYS_ON_ERROR_SAMPLE_RATE', 1.0 ); // replaysOnErrorSampleRate |
Beta Was this translation helpful? Give feedback.
Session Replays SDK has been added: https://github.com/stayallive/wp-sentry/releases/tag/v6.10.0
You can start by setting the following constants: