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
6 changes: 5 additions & 1 deletion lib/cjs/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1676,9 +1676,13 @@ export interface CommonProperties {
*/
readonly session_replay_sample_rate?: number;
/**
* The percentage of views profiled
* The percentage of sessions profiled
*/
readonly profiling_sample_rate?: number;
/**
* The percentage of sessions with traced resources
*/
readonly trace_sample_rate?: number;
[k: string]: unknown;
};
/**
Expand Down
6 changes: 5 additions & 1 deletion lib/esm/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1676,9 +1676,13 @@ export interface CommonProperties {
*/
readonly session_replay_sample_rate?: number;
/**
* The percentage of views profiled
* The percentage of sessions profiled
*/
readonly profiling_sample_rate?: number;
/**
* The percentage of sessions with traced resources
*/
readonly trace_sample_rate?: number;
[k: string]: unknown;
};
/**
Expand Down
9 changes: 8 additions & 1 deletion schemas/rum/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,14 @@
},
"profiling_sample_rate": {
"type": "number",
"description": "The percentage of views profiled",
"description": "The percentage of sessions profiled",
"minimum": 0,
"maximum": 100,
"readOnly": true
},
"trace_sample_rate": {
"type": "number",
"description": "The percentage of sessions with traced resources",
Comment thread
ncreated marked this conversation as resolved.
"minimum": 0,
"maximum": 100,
"readOnly": true
Expand Down
Loading