Skip to content

Commit 5702e83

Browse files
committed
RUM-17895: Add use_client_side_stats to telemetry configuration schema
1 parent 45083b4 commit 5702e83

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

lib/cjs/generated/telemetry.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,10 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
481481
* Whether the beta track WebSockets feature is enabled
482482
*/
483483
beta_track_web_sockets?: boolean;
484+
/**
485+
* Whether tracing feature's client-side-stats generation is enabled
486+
*/
487+
use_client_side_stats?: boolean;
484488
[k: string]: unknown;
485489
};
486490
[k: string]: unknown;

lib/esm/generated/telemetry.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,10 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
481481
* Whether the beta track WebSockets feature is enabled
482482
*/
483483
beta_track_web_sockets?: boolean;
484+
/**
485+
* Whether tracing feature's client-side-stats generation is enabled
486+
*/
487+
use_client_side_stats?: boolean;
484488
[k: string]: unknown;
485489
};
486490
[k: string]: unknown;

schemas/telemetry/configuration-schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,10 @@
540540
"type": "boolean",
541541
"description": "Whether the beta track WebSockets feature is enabled",
542542
"readOnly": false
543+
},
544+
"use_client_side_stats": {
545+
"type": "boolean",
546+
"description": "Whether tracing feature's client-side-stats generation is enabled"
543547
}
544548
}
545549
}

0 commit comments

Comments
 (0)