File tree Expand file tree Collapse file tree 4 files changed +26
-0
lines changed Expand file tree Collapse file tree 4 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -199,6 +199,14 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
199
199
* Whether the allowed tracing urls list is used
200
200
*/
201
201
use_allowed_tracing_urls ?: boolean ;
202
+ /**
203
+ * Whether the allowed GraphQL urls list is used
204
+ */
205
+ use_allowed_graph_ql_urls ?: boolean ;
206
+ /**
207
+ * Whether GraphQL payload tracking is used for at least one GraphQL endpoint
208
+ */
209
+ use_track_graph_ql_payload ?: boolean ;
202
210
/**
203
211
* A list of selected tracing propagators
204
212
*/
Original file line number Diff line number Diff line change @@ -199,6 +199,14 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
199
199
* Whether the allowed tracing urls list is used
200
200
*/
201
201
use_allowed_tracing_urls ?: boolean ;
202
+ /**
203
+ * Whether the allowed GraphQL urls list is used
204
+ */
205
+ use_allowed_graph_ql_urls ?: boolean ;
206
+ /**
207
+ * Whether GraphQL payload tracking is used for at least one GraphQL endpoint
208
+ */
209
+ use_track_graph_ql_payload ?: boolean ;
202
210
/**
203
211
* A list of selected tracing propagators
204
212
*/
Original file line number Diff line number Diff line change 45
45
"session_persistence" : " cookie" ,
46
46
"action_name_attribute" : " foo" ,
47
47
"use_allowed_tracing_origins" : false ,
48
+ "use_allowed_graph_ql_urls" : false ,
49
+ "use_track_graph_ql_payload" : false ,
48
50
"default_privacy_level" : " mask" ,
49
51
"text_and_input_privacy_level" : " mask_all" ,
50
52
"image_privacy_level" : " mask_all" ,
Original file line number Diff line number Diff line change 168
168
"type" : " boolean" ,
169
169
"description" : " Whether the allowed tracing urls list is used"
170
170
},
171
+ "use_allowed_graph_ql_urls" : {
172
+ "type" : " boolean" ,
173
+ "description" : " Whether the allowed GraphQL urls list is used"
174
+ },
175
+ "use_track_graph_ql_payload" : {
176
+ "type" : " boolean" ,
177
+ "description" : " Whether GraphQL payload tracking is used for at least one GraphQL endpoint"
178
+ },
171
179
"selected_tracing_propagators" : {
172
180
"type" : " array" ,
173
181
"items" : {
You can’t perform that action at this time.
0 commit comments