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
@@ -266,6 +267,62 @@ client.breadcrumbs?.info('This is a manual breadcrumb.', {
266
267
267
268
---
268
269
270
+
### Session Replay
271
+
272
+
The optional `@backtrace/session-replay` module allows you to capture and replay the user's interactions leading up to an error. This provides a video-like context for your error reports, making it much easier to reproduce and debug issues.
273
+
274
+
The Session Replay module is designed with privacy as a top priority. By default, it automatically masks all text and input fields to avoid capturing sensitive user data.
275
+
276
+
For full details on session replay configuration, sampling, and advanced privacy controls, please see the **[Session Replay Module Documentation](../session-replay/README.md)**.
277
+
278
+
#### 1. Install the additional package
279
+
280
+
In addition to `@backtrace/browser`, you will also need to install the session replay package.
281
+
282
+
```bash
283
+
$ npm install @backtrace/session-replay
284
+
```
285
+
286
+
#### 2. Add the module to the client
287
+
288
+
To enable session replay, you must use the BacktraceClient.builder() and add the BacktraceSessionReplayModule. This replaces the standard BacktraceClient.initialize().
@@ -295,6 +296,62 @@ client.breadcrumbs?.info('This is a manual breadcrumb.', {
295
296
296
297
---
297
298
299
+
### Session Replay
300
+
301
+
The optional `@backtrace/session-replay` module allows you to capture and replay the user's interactions leading up to an error. This provides a video-like context for your error reports, making it much easier to reproduce and debug issues.
302
+
303
+
The Session Replay module is designed with privacy as a top priority. By default, it automatically masks all text and input fields to avoid capturing sensitive user data.
304
+
305
+
For full details on session replay configuration, sampling, and advanced privacy controls, please see the **[Session Replay Module Documentation](../session-replay/README.md)**.
306
+
307
+
#### 1. Install the additional package
308
+
309
+
In addition to `@backtrace/react`, you will also need to install the session replay package.
310
+
311
+
```bash
312
+
$ npm install @backtrace/session-replay
313
+
```
314
+
315
+
#### 2. Add the module to the client
316
+
317
+
To enable session replay, you must use the BacktraceClient.builder() and add the BacktraceSessionReplayModule. This replaces the standard BacktraceClient.initialize().
0 commit comments