Skip to content

Commit 75e4f5c

Browse files
authored
Update iOS for SR4M GA
1 parent adc6412 commit 75e4f5c

File tree

1 file changed

+6
-15
lines changed
  • docs/platforms/apple/guides/ios/session-replay

1 file changed

+6
-15
lines changed

docs/platforms/apple/guides/ios/session-replay/index.mdx

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,9 @@
22
title: Set Up Session Replay
33
sidebar_order: 5500
44
notSupported:
5-
description: "Learn how to enable the Beta of Mobile Session Replay in your app."
5+
description: "Learn how to enable Session Replay in your mobile app."
66
---
77

8-
<Note>
9-
10-
Mobile support for Session Replay is in Beta. Features available in Beta are still work-in-progress and may have bugs. We recognize the irony.
11-
12-
If you have any questions, feedback or would like to report a bug, please open a [GitHub issue](https://github.com/getsentry/sentry-cocoa/issues/new?assignees=&labels=Platform%3A+Cocoa%2CType%3A+Bug&projects=&template=bug.yml) with a link to a relevant replay in Sentry if possible.
13-
14-
</Note>
15-
168
[Session Replay](/product/explore/session-replay/) helps you get to the root cause of an error or latency issue faster by providing you with a reproduction of what was happening in the user's device before, during, and after the issue. You can rewind and replay your application's state and see key user interactions, like taps, swipes, network requests, and console entries, in a single UI.
179

1810
By default, our Session Replay SDK masks all text content, images, and user input, giving you heightened confidence that no sensitive data will leave the device. To learn more, see [product docs](/product/explore/session-replay/).
@@ -46,9 +38,8 @@ SentrySDK.start(configureOptions: { options in
4638
options.dsn = "___PUBLIC_DSN___"
4739
options.debug = true
4840

49-
// Currently under experimental options:
50-
options.experimental.sessionReplay.onErrorSampleRate = 1.0
51-
options.experimental.sessionReplay.sessionSampleRate = 1.0
41+
options.sessionReplay.onErrorSampleRate = 1.0
42+
options.sessionReplay.sessionSampleRate = 1.0
5243
})
5344
```
5445

@@ -86,8 +77,8 @@ If you encounter any data not being redacted with the default settings, please l
8677
To disable redaction altogether (not to be used on applications with sensitive data):
8778

8879
```swift
89-
options.experimental.sessionReplay.redactAllText = false
90-
options.experimental.sessionReplay.redactAllImages = false
80+
options.sessionReplay.redactAllText = false
81+
options.sessionReplay.redactAllImages = false
9182
```
9283

9384
## Error Linking
@@ -110,4 +101,4 @@ A: Text views, input views, images, video players and webviews are all masked by
110101

111102
Q: What's the lowest version of iOS supported?
112103

113-
A: Session Replay recording happens even on the lowest version supported by the Sentry SDK, which is aligend with appstore support.
104+
A: Session Replay recording happens even on the lowest version supported by the Sentry SDK, which is aligend with appstore support.

0 commit comments

Comments
 (0)