Skip to content

Commit

Permalink
Fix GDPR comments (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
lramos15 committed Oct 20, 2023
1 parent 25425b5 commit f9dccf6
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions src/extension/telemetry/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export interface IEventNamePropertyMapping {
/* __GDPR__
"debug.success_activation" : {
"codeloadingtime" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
\ "errorname" : { "classification": "CallstackOrException", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" },
"errorname" : { "classification": "CallstackOrException", "purpose": "PerformanceAndHealth", "owner": "paulacamargo25" }
}
*/
[EventName.DEBUG_SUCCESS_ACTIVATION]: {};
Expand Down Expand Up @@ -573,26 +573,26 @@ export interface IEventNamePropertyMapping {
}
*/
[EventName.DEBUGGER_ATTACH_TO_CHILD_PROCESS]: never | undefined;
// /**
// * Telemetry event sent when attaching to a local process.
// */
// /* __GDPR__
// "debugger.attach_to_local_process" : { "owner": "paulacamargo25" }
// */
/**
* Telemetry event sent when attaching to a local process.
*/
/* __GDPR__
"debugger.attach_to_local_process" : { "owner": "paulacamargo25" }
*/
[EventName.DEBUGGER_ATTACH_TO_LOCAL_PROCESS]: never | undefined;
// /**
// * Telemetry sent after building configuration for debugger
// */
// /* __GDPR__
// "debugger.configuration.prompts" : {
// "configurationtype" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
// "autodetecteddjangomanagepypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
// "autodetectedpyramidinipath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
// "autodetectedfastapimainpypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
// "autodetectedflaskapppypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
// "manuallyenteredavalue" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" }
// }
// */
/**
* Telemetry sent after building configuration for debugger
*/
/* __GDPR__
"debugger.configuration.prompts" : {
"configurationtype" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
"autodetecteddjangomanagepypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
"autodetectedpyramidinipath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
"autodetectedfastapimainpypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
"autodetectedflaskapppypath" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" },
"manuallyenteredavalue" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "owner": "paulacamargo25" }
}
*/

[EventName.DEBUGGER_CONFIGURATION_PROMPTS]: {
/**
Expand Down

0 comments on commit f9dccf6

Please sign in to comment.