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
@@ -267,6 +268,62 @@ client.breadcrumbs?.info('This is a manual breadcrumb.', {
267
268
268
269
---
269
270
271
+
### Session Replay
272
+
273
+
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.
274
+
275
+
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.
276
+
277
+
For full details on session replay configuration, sampling, and advanced privacy controls, please see the **[Session Replay Module Documentation](../session-replay/README.md)**.
278
+
279
+
#### 1. Install the additional package
280
+
281
+
In addition to `@backtrace/react-native`, you will also need to install the session replay package.
282
+
283
+
```bash
284
+
$ npm install @backtrace/session-replay
285
+
```
286
+
287
+
#### 2. Add the module to the client
288
+
289
+
To enable session replay, you must use the BacktraceClient.builder() and add the BacktraceSessionReplayModule. This replaces the standard BacktraceClient.initialize().
0 commit comments