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
4 changes: 4 additions & 0 deletions lib/cjs/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1359,6 +1359,10 @@ export interface CommonProperties {
* The percentage of sessions with traced resources
*/
readonly trace_sample_rate?: number;
/**
* Session Replay experimental features enabled in the SDK configuration
*/
readonly session_replay_experimental_features?: string[];
[k: string]: unknown;
};
/**
Expand Down
4 changes: 4 additions & 0 deletions lib/esm/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1359,6 +1359,10 @@ export interface CommonProperties {
* The percentage of sessions with traced resources
*/
readonly trace_sample_rate?: number;
/**
* Session Replay experimental features enabled in the SDK configuration
*/
readonly session_replay_experimental_features?: string[];
[k: string]: unknown;
};
/**
Expand Down
1 change: 1 addition & 0 deletions samples/rum-events/view.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
"configuration": {
"session_sample_rate": 12.45,
"session_replay_sample_rate": 100,
"session_replay_experimental_features": ["layer_tree_recording"],
"start_session_replay_recording_manually": true
},
"profiling": {
Expand Down
8 changes: 8 additions & 0 deletions schemas/rum/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,14 @@
"minimum": 0,
"maximum": 100,
"readOnly": true
},
"session_replay_experimental_features": {
"type": "array",
"description": "Session Replay experimental features enabled in the SDK configuration",
"items": {
"type": "string"
},
"readOnly": true
}
}
},
Expand Down
Loading