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
Copy file name to clipboardExpand all lines: docs/platforms/dart/guides/flutter/session-replay/configuration.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ description: "Learn about the general Session Replay configuration fields."
7
7
8
8
## General Integration Configuration
9
9
10
-
The following options can be configured on the `options.replay` field of your Sentry Flutter SDK, in `SentryFlutter.init((options) { ... })`:
10
+
The following options can be configured in the `options.replay` field of your Sentry Flutter SDK, in `SentryFlutter.init((options) { ... })`:
11
11
12
12
13
13
| Key | Type | Default | Description |
@@ -16,15 +16,15 @@ The following options can be configured on the `options.replay` field of your Se
16
16
| onErrorSampleRate |`double`|`0`| The sample rate for replays that are recorded when an error happens. This type of replay will record up to a minute of events prior to the error and continue recording until the session ends. `1.0` captures all sessions with an error, and `0` captures none. |
17
17
| quality |`SentryReplayQuality`|`SentryReplayQuality.medium`| Defines the image quality of the session replay. The higher the quality, the more accurate the replay will be, but also more data to transfer and more CPU load. |
18
18
19
-
## Network Details
19
+
## Configure Network Details
20
20
21
21
In order to capture basic information about network requests, you need to use our Sentry integrations for the HTTP client you are using.
22
22
This allows the Sentry instrumented HTTP client to capture network details during your replay.
In order to capture screen names and navigation breadcrumbs, you need to add our `SentryNavigatorObserver` to your application's `navigatorObservers` and define route names when you navigate to a new screen.
0 commit comments