Skip to content

Commit 3dbd2d2

Browse files
committed
♻️ update schemas
1 parent 5d3e748 commit 3dbd2d2

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

packages/core/src/domain/telemetry/telemetryEvent.types.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,14 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
205205
* Whether the allowed tracing urls list is used
206206
*/
207207
use_allowed_tracing_urls?: boolean
208+
/**
209+
* Whether the allowed GraphQL urls list is used
210+
*/
211+
use_allowed_graph_ql_urls?: boolean
212+
/**
213+
* Whether GraphQL payload tracking is used for at least one GraphQL endpoint
214+
*/
215+
use_track_graph_ql_payload?: boolean
208216
/**
209217
* A list of selected tracing propagators
210218
*/
@@ -439,6 +447,22 @@ export type TelemetryConfigurationEvent = CommonTelemetryProperties & {
439447
* The variant of the SDK build (e.g., standard, lite, etc.).
440448
*/
441449
variant?: string
450+
/**
451+
* The id of the remote configuration
452+
*/
453+
remote_configuration_id?: string
454+
/**
455+
* Whether a proxy is used for remote configuration
456+
*/
457+
use_remote_configuration_proxy?: boolean
458+
/**
459+
* The percentage of sessions with Profiling enabled
460+
*/
461+
profiling_sample_rate?: number
462+
/**
463+
* Whether trace baggage is propagated to child spans
464+
*/
465+
propagate_trace_baggage?: boolean
442466
[k: string]: unknown
443467
}
444468
[k: string]: unknown

packages/rum-core/src/rumEvent.types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,15 +1240,15 @@ export type RumVitalEvent = CommonProperties &
12401240
/**
12411241
* Type of the vital
12421242
*/
1243-
readonly type: 'duration' | 'step'
1243+
readonly type: 'duration' | 'operation_step'
12441244
/**
12451245
* UUID of the vital
12461246
*/
12471247
readonly id: string
12481248
/**
12491249
* Optional key to distinguish between multiple operations of the same name running in parallel (e.g., 'photo_upload' with keys 'profile_pic' vs 'cover')
12501250
*/
1251-
readonly parent_id?: string
1251+
readonly operation_key?: string
12521252
/**
12531253
* Name of the vital, as it is also used as facet path for its value, it must contain only letters, digits, or the characters - _ . @ $
12541254
*/

0 commit comments

Comments
 (0)