Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ MPSessionReplay.getInstance()?.flush()

## Remote Configuration

By setting `remoteSettingsMode` you can quickly set SDK options for your project in mixpanel under `Settings > Project > Session Replay`.
<Callout type="info">
Available only for customers with a paid session replay add-on.
</Callout>

By setting `remote_settings_mode` you can quickly set SDK options for your project in Mixpanel under `Settings > Organization Settings > Session Replay`.

Three modes are available:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,11 @@ Network recording uses two complementary mechanisms:

## Remote Configuration

By setting `remote_settings_mode` you can quickly set SDK options for your project in mixpanel under `Settings > Project > Session Replay`.
<Callout type="info">
Available only for customers with a paid session replay add-on. Requires version 2.74.0
</Callout>

By setting `remote_settings_mode` you can quickly set SDK options for your project in Mixpanel under `Settings > Organization Settings > Session Replay`.

Three modes are available:

Expand All @@ -264,6 +268,14 @@ List of currently supported remote settings:

Settings that are not yet supported, will not appear in the remote configuration. These non-included options will use the value that was initially set by the user for all `remote_settings_mode` options.

**Example Usage**
```javascript
mixpanel.init('YOUR_PROJECT_TOKEN', {
record_sessions_percent: 100,
remote_settings_mode: 'fallback'
});
```

## Cross-Origin Iframe Recording

<Callout type="info">
Expand Down
6 changes: 5 additions & 1 deletion pages/docs/tracking-methods/sdks/swift/swift-replay.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,11 @@ MPSessionReplay.getInstance()?.flush()

## Remote Configuration

By setting `remoteSettingsMode` you can quickly set SDK options for your project in mixpanel under `Settings > Project > Session Replay`.
<Callout type="info">
Available only for customers with a paid session replay add-on.
</Callout>

By setting `remote_settings_mode` you can quickly set SDK options for your project in Mixpanel under `Settings > Organization Settings > Session Replay`.

Three modes are available:

Expand Down
Loading