Skip to content

Commit 92766cd

Browse files
authored
switch telemetry event owner (microsoft#628)
1 parent 8201ced commit 92766cd

File tree

1 file changed

+50
-50
lines changed

1 file changed

+50
-50
lines changed

src/extension/telemetry/index.ts

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -251,31 +251,31 @@ export interface IEventNamePropertyMapping {
251251
*/
252252
/* __GDPR__
253253
"debug.success_activation" : {
254-
"codeloadingtime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
255-
"errorname" : { "classification": "CallstackOrException", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" }
254+
"codeloadingtime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
255+
"errorname" : { "classification": "CallstackOrException", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" }
256256
}
257257
*/
258258
[EventName.DEBUG_SUCCESS_ACTIVATION]: {};
259259
/**
260260
* Telemetry event sent when debug in terminal button was used to debug current file.
261261
*/
262262
/* __GDPR__
263-
"debug_in_terminal_button" : { "owner": "paulacamargo25" }
263+
"debug_in_terminal_button" : { "owner": "eleanorjboyd" }
264264
*/
265265
[EventName.DEBUG_IN_TERMINAL_BUTTON]: never | undefined;
266266
/**
267267
* Telemetry event sent when debug using launch.json button was used to debug.
268268
*/
269269
/* __GDPR__
270-
"debug_using_launch_config_button" : { "owner": "paulacamargo25" }
270+
"debug_using_launch_config_button" : { "owner": "eleanorjboyd" }
271271
*/
272272
[EventName.DEBUG_USING_LAUNCH_CONFIG_BUTTON]: never | undefined;
273273
/**
274274
* Telemetry event captured when debug adapter executable is created
275275
*/
276276
/* __GDPR__
277277
"debug_adapter.using_wheels_path" : {
278-
"usingwheels" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" }
278+
"usingwheels" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" }
279279
}
280280
*/
281281

@@ -292,9 +292,9 @@ export interface IEventNamePropertyMapping {
292292
*/
293293
/* __GDPR__
294294
"debug_session.start" : {
295-
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
296-
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" },
297-
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" }
295+
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
296+
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" },
297+
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" }
298298
}
299299
*/
300300
[EventName.DEBUG_SESSION_START]: {
@@ -322,9 +322,9 @@ export interface IEventNamePropertyMapping {
322322
*/
323323
/* __GDPR__
324324
"debug_session.error" : {
325-
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
326-
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" },
327-
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" }
325+
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
326+
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" },
327+
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" }
328328
329329
}
330330
*/
@@ -354,9 +354,9 @@ export interface IEventNamePropertyMapping {
354354
*/
355355
/* __GDPR__
356356
"debug_session.stop" : {
357-
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
358-
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" },
359-
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" }
357+
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
358+
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" },
359+
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" }
360360
}
361361
*/
362362
[EventName.DEBUG_SESSION_STOP]: {
@@ -384,9 +384,9 @@ export interface IEventNamePropertyMapping {
384384
*/
385385
/* __GDPR__
386386
"debug_session.user_code_running" : {
387-
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
388-
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" },
389-
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" }
387+
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
388+
"trigger" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" },
389+
"console" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "owner": "eleanorjboyd" }
390390
}
391391
*/
392392
[EventName.DEBUG_SESSION_USER_CODE_RUNNING]: {
@@ -414,25 +414,25 @@ export interface IEventNamePropertyMapping {
414414
*/
415415
/* __GDPR__
416416
"debugger" : {
417-
"trigger" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
418-
"console" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
419-
"hasenvvars": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
420-
"hasargs": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
421-
"django": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
422-
"fastapi": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
423-
"flask": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
424-
"jinja": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
425-
"islocalhost": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
426-
"ismodule": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
427-
"issudo": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
428-
"stoponentry": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
429-
"showreturnvalue": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
430-
"pyramid": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
431-
"subprocess": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
432-
"watson": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
433-
"pyspark": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
434-
"gevent": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
435-
"scrapy": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" }
417+
"trigger" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
418+
"console" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
419+
"hasenvvars": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
420+
"hasargs": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
421+
"django": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
422+
"fastapi": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
423+
"flask": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
424+
"jinja": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
425+
"islocalhost": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
426+
"ismodule": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
427+
"issudo": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
428+
"stoponentry": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
429+
"showreturnvalue": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
430+
"pyramid": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
431+
"subprocess": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
432+
"watson": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
433+
"pyspark": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
434+
"gevent": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
435+
"scrapy": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" }
436436
}
437437
*/
438438
[EventName.DEBUGGER]: {
@@ -570,29 +570,29 @@ export interface IEventNamePropertyMapping {
570570
*/
571571
/* __GDPR__
572572
"debugger.attach_to_child_process" : {
573-
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true, "owner": "paulacamargo25" }
573+
"duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true, "owner": "eleanorjboyd" }
574574
}
575575
*/
576576
[EventName.DEBUGGER_ATTACH_TO_CHILD_PROCESS]: never | undefined;
577577
/**
578578
* Telemetry event sent when attaching to a local process.
579579
*/
580580
/* __GDPR__
581-
"debugger.attach_to_local_process" : { "owner": "paulacamargo25" }
581+
"debugger.attach_to_local_process" : { "owner": "eleanorjboyd" }
582582
*/
583583
[EventName.DEBUGGER_ATTACH_TO_LOCAL_PROCESS]: never | undefined;
584584
/**
585585
* Telemetry sent after building configuration for debugger
586586
*/
587587
/* __GDPR__
588588
"debugger.configuration.prompts" : {
589-
"configurationtype" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
590-
"autodetecteddjangomanagepypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
591-
"autodetectedpyramidinipath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
592-
"autodetectedfastapimainpypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
593-
"autodetectedflaskapppypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
594-
"manuallyenteredavalue" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
595-
"browsefilevalue" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" }
589+
"configurationtype" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
590+
"autodetecteddjangomanagepypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
591+
"autodetectedpyramidinipath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
592+
"autodetectedfastapimainpypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
593+
"autodetectedflaskapppypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
594+
"manuallyenteredavalue" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" },
595+
"browsefilevalue" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "eleanorjboyd" }
596596
}
597597
*/
598598

@@ -645,7 +645,7 @@ export interface IEventNamePropertyMapping {
645645
* Telemetry event sent when providing completion provider in launch.json. It is sent just *after* inserting the completion.
646646
*/
647647
/* __GDPR__
648-
"debugger.configuration.prompts.in.launch.json" : { "owner": "paulacamargo25" }
648+
"debugger.configuration.prompts.in.launch.json" : { "owner": "eleanorjboyd" }
649649
*/
650650
[EventName.DEBUGGER_CONFIGURATION_PROMPTS_IN_LAUNCH_JSON]: never | undefined;
651651
/**
@@ -659,14 +659,14 @@ export interface IEventNamePropertyMapping {
659659
* Telemetry event sent when the user use the report issue command.
660660
*/
661661
/* __GDPR__
662-
"use_report_issue_command" : { "owner": "paulacamargo25" }
662+
"use_report_issue_command" : { "owner": "eleanorjboyd" }
663663
*/
664664
[EventName.USE_REPORT_ISSUE_COMMAND]: unknown;
665665
/**
666666
* Telemetry event sent when providing dynamic configuration for debugger
667667
*/
668668
/* __GDPR__
669-
"debugger_dynamic_config" : { "owner": "paulacamargo25" }
669+
"debugger_dynamic_config" : { "owner": "eleanorjboyd" }
670670
*/
671671
[EventName.DEBUGGER_DYNAMIC_CONFIGURATION]: {
672672
/**
@@ -680,14 +680,14 @@ export interface IEventNamePropertyMapping {
680680
* Telemetry event sent when the debugger is running with a non supports python versions minor than 3.7.
681681
*/
682682
/* __GDPR__
683-
"DEBUGGER_PYTHON_37_DEPRECATED" : { "owner": "paulacamargo25" }
683+
"DEBUGGER_PYTHON_37_DEPRECATED" : { "owner": "eleanorjboyd" }
684684
*/
685685
[EventName.DEBUGGER_PYTHON_37_DEPRECATED]: never | undefined;
686686
/**
687687
* Telemetry event sent when displaying inline values in the debugger.
688688
*/
689689
/* __GDPR__
690-
"DEBUGGER_SHOW_PYTHON_INLINE_VALUES" : { "owner": "paulacamargo25" }
690+
"DEBUGGER_SHOW_PYTHON_INLINE_VALUES" : { "owner": "eleanorjboyd" }
691691
*/
692692
[EventName.DEBUGGER_SHOW_PYTHON_INLINE_VALUES]: never | undefined;
693693
}

0 commit comments

Comments
 (0)