Skip to content

Commit

Permalink
GDPR classify timer2 on IStartupMetrics
Browse files Browse the repository at this point in the history
  • Loading branch information
kieferrm committed Sep 19, 2017
1 parent dd56a74 commit 218f4b1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/vs/workbench/services/timer/common/timerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export interface IMemoryInfo {
"timers.ellapsedEditorRestore" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"timers.ellapsedWorkbench" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"timers.ellapsedTimersToTimersComputed" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"timers2" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"platform" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"release" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"arch" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
Expand All @@ -50,7 +49,13 @@ export interface IMemoryInfo {
"hasAccessibilitySupport" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"isVMLikelyhood" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"emptyWorkbench" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"loadavg" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
"loadavg" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" },
"${wildcard}": [
{
"${prefix}": "timers2.",
"${classification}": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
}
]
}
*/
export interface IStartupMetrics {
Expand All @@ -68,7 +73,6 @@ export interface IStartupMetrics {
ellapsedWorkbench: number;
ellapsedTimersToTimersComputed: number;
};
// GDPR__TODO: Dynamic property set with timer2, cannot be declared in the registry
timers2: { [name: string]: number };
platform: string;
release: string;
Expand Down

0 comments on commit 218f4b1

Please sign in to comment.