File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -433,6 +433,18 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
433
433
* The id of the remote configuration
434
434
*/
435
435
remote_configuration_id ?: string ;
436
+ /**
437
+ * Whether a proxy is used for remote configuration
438
+ */
439
+ use_remote_configuration_proxy ?: boolean ;
440
+ /**
441
+ * The percentage of sessions with Profiling enabled
442
+ */
443
+ profiling_sample_rate ?: number ;
444
+ /**
445
+ * Whether trace baggage is propagated to child spans
446
+ */
447
+ propagate_trace_baggage ?: boolean ;
436
448
[ k : string ] : unknown ;
437
449
} ;
438
450
[ k : string ] : unknown ;
Original file line number Diff line number Diff line change @@ -433,6 +433,18 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
433
433
* The id of the remote configuration
434
434
*/
435
435
remote_configuration_id ?: string ;
436
+ /**
437
+ * Whether a proxy is used for remote configuration
438
+ */
439
+ use_remote_configuration_proxy ?: boolean ;
440
+ /**
441
+ * The percentage of sessions with Profiling enabled
442
+ */
443
+ profiling_sample_rate ?: number ;
444
+ /**
445
+ * Whether trace baggage is propagated to child spans
446
+ */
447
+ propagate_trace_baggage ?: boolean ;
436
448
[ k : string ] : unknown ;
437
449
} ;
438
450
[ k : string ] : unknown ;
Original file line number Diff line number Diff line change 480
480
"type" : " string" ,
481
481
"description" : " The id of the remote configuration" ,
482
482
"readOnly" : false
483
+ },
484
+ "use_remote_configuration_proxy" : {
485
+ "type" : " boolean" ,
486
+ "description" : " Whether a proxy is used for remote configuration" ,
487
+ "readOnly" : false
488
+ },
489
+ "profiling_sample_rate" : {
490
+ "type" : " number" ,
491
+ "description" : " The percentage of sessions with Profiling enabled" ,
492
+ "minimum" : 0 ,
493
+ "maximum" : 100 ,
494
+ "readOnly" : false
495
+ },
496
+ "propagate_trace_baggage" : {
497
+ "type" : " boolean" ,
498
+ "description" : " Whether trace baggage is propagated to child spans" ,
499
+ "readOnly" : false
483
500
}
484
501
}
485
502
}
You can’t perform that action at this time.
0 commit comments