From fbb3e25987bdac8dfd270a89e723c8413e7649ca Mon Sep 17 00:00:00 2001 From: kieferrm Date: Wed, 20 Sep 2017 15:03:24 -0700 Subject: [PATCH] omit endPoint where it defaults to none --- extensions/git/src/commands.ts | 14 ++--- extensions/markdown/src/extension.ts | 4 +- .../typescript/src/typescriptServiceClient.ts | 10 ++-- src/typings/native-keymap.d.ts | 20 +++---- .../quickopen/browser/quickOpenWidget.ts | 10 ++-- .../base/parts/quickopen/common/quickOpen.ts | 2 +- .../electron-browser/sharedProcessMain.ts | 2 +- src/vs/code/electron-main/app.ts | 2 +- src/vs/code/electron-main/menus.ts | 4 +- .../editor/common/editorCommonExtensions.ts | 4 +- .../contrib/gotoError/browser/gotoError.ts | 2 +- .../browser/referencesController.ts | 8 +-- .../suggest/browser/completionModel.ts | 6 +- .../suggest/browser/suggestController.ts | 2 +- .../contrib/suggest/browser/suggestWidget.ts | 2 +- .../contextview/browser/contextMenuHandler.ts | 4 +- .../common/extensionManagementUtil.ts | 14 ++--- .../node/extensionGalleryService.ts | 28 ++++----- .../platform/opener/browser/openerService.ts | 2 +- src/vs/platform/search/common/search.ts | 12 ++-- .../telemetry/browser/errorTelemetry.ts | 12 ++-- .../platform/telemetry/common/experiments.ts | 2 +- .../telemetry/common/telemetryService.ts | 2 +- .../telemetry/common/telemetryUtils.ts | 18 +++--- .../telemetry/node/commonProperties.ts | 20 +++---- .../node/workbenchCommonProperties.ts | 16 ++--- .../update/electron-main/updateService.ts | 10 ++-- .../api/electron-browser/mainThreadEditors.ts | 4 +- .../mainThreadSaveParticipant.ts | 4 +- .../electron-browser/mainThreadTelemetry.ts | 2 +- src/vs/workbench/api/node/extHost.api.impl.ts | 10 ++-- .../api/node/extHostExtensionService.ts | 12 ++-- .../workbench/api/node/extHostTextEditor.ts | 4 +- src/vs/workbench/browser/composite.ts | 6 +- .../workbench/browser/parts/compositePart.ts | 4 +- .../browser/parts/editor/editorPart.ts | 2 +- .../browser/parts/editor/titleControl.ts | 4 +- .../parts/quickopen/quickOpenController.ts | 2 +- .../browser/parts/statusbar/statusbarPart.ts | 4 +- src/vs/workbench/common/actions.ts | 4 +- src/vs/workbench/common/editor.ts | 20 +++---- .../electron-browser/nodeCachedDataManager.ts | 10 ++-- src/vs/workbench/electron-browser/shell.ts | 34 +++++------ src/vs/workbench/electron-browser/window.ts | 4 +- .../parts/debug/browser/debugActionsWidget.ts | 6 +- .../debug/electron-browser/debugService.ts | 28 ++++----- .../debug/electron-browser/rawDebugSession.ts | 4 +- .../electron-browser/extensionTipsService.ts | 20 +++---- .../electron-browser/extensionsUtils.ts | 10 ++-- .../electron-browser/extensionsViews.ts | 6 +- .../node/extensionsWorkbenchService.ts | 6 +- .../files/browser/views/explorerViewer.ts | 4 +- .../files/browser/views/openEditorsViewer.ts | 4 +- .../parts/markers/browser/markersPanel.ts | 2 +- .../markers/browser/markersPanelActions.ts | 6 +- .../preferences/browser/keybindingsEditor.ts | 4 +- .../preferences/browser/preferencesEditor.ts | 4 +- .../browser/preferencesRenderers.ts | 2 +- .../preferences/browser/preferencesService.ts | 2 +- .../quickopen/browser/commandsHandler.ts | 4 +- .../search/browser/openAnythingHandler.ts | 48 +++++++-------- .../parts/search/common/searchModel.ts | 14 ++--- .../parts/tasks/common/taskSystem.ts | 12 ++-- .../electron-browser/task.contribution.ts | 2 +- .../page/electron-browser/welcomePage.ts | 52 ++++++++--------- .../electron-browser/walkThroughPart.ts | 32 +++++----- .../walkThrough/node/walkThroughInput.ts | 14 ++--- .../electron-browser/contextmenuService.ts | 4 +- .../electron-browser/extensionService.ts | 12 ++-- .../electron-browser/keybindingService.ts | 2 +- .../services/message/browser/messageList.ts | 4 +- .../telemetry/common/workspaceStats.ts | 56 +++++++++--------- .../textfile/common/textFileEditorModel.ts | 10 ++-- .../textfile/common/textFileService.ts | 6 +- .../services/textfile/common/textfiles.ts | 6 +- .../electron-browser/workbenchThemeService.ts | 10 ++-- .../services/timer/common/timerService.ts | 58 +++++++++---------- 77 files changed, 408 insertions(+), 408 deletions(-) diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts index fe4ded45769..32516451074 100644 --- a/extensions/git/src/commands.ts +++ b/extensions/git/src/commands.ts @@ -266,7 +266,7 @@ export class CommandCenter { if (!url) { /* __GDPR__ "clone" : { - "outcome" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryReporter.sendTelemetryEvent('clone', { outcome: 'no_URL' }); @@ -285,7 +285,7 @@ export class CommandCenter { if (!parentPath) { /* __GDPR__ "clone" : { - "outcome" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryReporter.sendTelemetryEvent('clone', { outcome: 'no_directory' }); @@ -307,8 +307,8 @@ export class CommandCenter { const openFolder = result === open; /* __GDPR__ "clone" : { - "outcome" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "openFolder": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "isMeasurement": true } + "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "openFolder": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth", "isMeasurement": true } } */ this.telemetryReporter.sendTelemetryEvent('clone', { outcome: 'success' }, { openFolder: openFolder ? 1 : 0 }); @@ -319,14 +319,14 @@ export class CommandCenter { if (/already exists and is not an empty directory/.test(err && err.stderr || '')) { /* __GDPR__ "clone" : { - "outcome" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryReporter.sendTelemetryEvent('clone', { outcome: 'directory_not_empty' }); } else { /* __GDPR__ "clone" : { - "outcome" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryReporter.sendTelemetryEvent('clone', { outcome: 'error' }); @@ -1343,7 +1343,7 @@ export class CommandCenter { /* __GDPR__ "git.command" : { - "command" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "command" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryReporter.sendTelemetryEvent('git.command', { command: id }); diff --git a/extensions/markdown/src/extension.ts b/extensions/markdown/src/extension.ts index 686ac504a4c..7d7a3a8ae27 100644 --- a/extensions/markdown/src/extension.ts +++ b/extensions/markdown/src/extension.ts @@ -262,8 +262,8 @@ function showPreview(cspArbiter: ExtensionContentSecurityPolicyArbiter, uri?: vs if (telemetryReporter) { /* __GDPR__ "openPreview" : { - "where" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "how": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "where" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "how": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ telemetryReporter.sendTelemetryEvent('openPreview', { diff --git a/extensions/typescript/src/typescriptServiceClient.ts b/extensions/typescript/src/typescriptServiceClient.ts index 84982e9658a..c83f2aa3cb0 100644 --- a/extensions/typescript/src/typescriptServiceClient.ts +++ b/extensions/typescript/src/typescriptServiceClient.ts @@ -388,7 +388,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient window.showErrorMessage(localize('serverCouldNotBeStarted', 'TypeScript language server couldn\'t be started. Error message is: {0}', err.message || err)); /* __GDPR__ "error" : { - "message": { "endPoint": "none", "classification": "CustomerContent", "purpose": "PerformanceAndHealth" } + "message": { "classification": "CustomerContent", "purpose": "PerformanceAndHealth" } } */ this.logTelemetry('error', { message: err.message }); @@ -414,7 +414,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient this.error(`TSServer exited with code: ${code}`); /* __GDPR__ "tsserver.exitWithCode" : { - "code" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "code" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ this.logTelemetry('tsserver.exitWithCode', { code: code }); @@ -853,9 +853,9 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient } /* __GDPR__ "typingsInstalled" : { - "installedPackages" : { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "installSuccess": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "typingsInstallerVersion": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "installedPackages" : { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "installSuccess": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "typingsInstallerVersion": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ // GDPR__COMMENT: Other events are defined by TypeScript. diff --git a/src/typings/native-keymap.d.ts b/src/typings/native-keymap.d.ts index 7671a421ac5..8f5162ab951 100644 --- a/src/typings/native-keymap.d.ts +++ b/src/typings/native-keymap.d.ts @@ -44,9 +44,9 @@ declare module 'native-keymap' { /* __GDPR__FRAGMENT__ "IKeyboardLayoutInfo" : { - "name" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "id": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "text": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "name" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "id": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "text": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface IWindowsKeyboardLayoutInfo { @@ -57,11 +57,11 @@ declare module 'native-keymap' { /* __GDPR__FRAGMENT__ "IKeyboardLayoutInfo" : { - "model" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "layout": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "variant": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "options": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "rules": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "model" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "layout": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "variant": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "options": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "rules": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface ILinuxKeyboardLayoutInfo { @@ -74,8 +74,8 @@ declare module 'native-keymap' { /* __GDPR__FRAGMENT__ "IKeyboardLayoutInfo" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "lang": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "lang": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface IMacKeyboardLayoutInfo { diff --git a/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts b/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts index ed53520d887..4285167e656 100644 --- a/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts +++ b/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts @@ -534,9 +534,9 @@ export class QuickOpenWidget implements IModelProvider { const entriesCount = this.model.entries.length; /* __GDPR__ "quickOpenWidgetItemAccepted" : { - "index" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "count": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "isQuickNavigate": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "index" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "count": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "isQuickNavigate": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.usageLogger.publicLog('quickOpenWidgetItemAccepted', { index: indexOfAcceptedElement, count: entriesCount, isQuickNavigate: this.quickNavigateConfiguration ? true : false }); @@ -782,8 +782,8 @@ export class QuickOpenWidget implements IModelProvider { if (this.usageLogger) { /* __GDPR__ "quickOpenWidgetCancelled" : { - "count" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "isQuickNavigate": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "count" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "isQuickNavigate": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.usageLogger.publicLog('quickOpenWidgetCancelled', { count: entriesCount, isQuickNavigate: this.quickNavigateConfiguration ? true : false }); diff --git a/src/vs/base/parts/quickopen/common/quickOpen.ts b/src/vs/base/parts/quickopen/common/quickOpen.ts index 8850a153307..b8f5f06a4f2 100644 --- a/src/vs/base/parts/quickopen/common/quickOpen.ts +++ b/src/vs/base/parts/quickopen/common/quickOpen.ts @@ -8,7 +8,7 @@ import { ResolvedKeybinding } from 'vs/base/common/keyCodes'; /* __GDPR__FRAGMENT__ "IQuickNavigateConfiguration" : { - "keybindings" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "keybindings" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface IQuickNavigateConfiguration { diff --git a/src/vs/code/electron-browser/sharedProcessMain.ts b/src/vs/code/electron-browser/sharedProcessMain.ts index 3af6219f706..fe27100012c 100644 --- a/src/vs/code/electron-browser/sharedProcessMain.ts +++ b/src/vs/code/electron-browser/sharedProcessMain.ts @@ -109,7 +109,7 @@ function main(server: Server, initData: ISharedProcessInitData): void { const config: ITelemetryServiceConfig = { appender, commonProperties: resolveCommonProperties(product.commit, pkg.version, installSource) - // __GDPR__COMMON__ "common.machineId" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.machineId" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } .then(result => Object.defineProperty(result, 'common.machineId', { get: () => storageService.get(machineIdStorageKey), enumerable: true diff --git a/src/vs/code/electron-main/app.ts b/src/vs/code/electron-main/app.ts index ed5c323de8a..fa34e9e0452 100644 --- a/src/vs/code/electron-main/app.ts +++ b/src/vs/code/electron-main/app.ts @@ -295,7 +295,7 @@ export class CodeApplication { const channel = getDelayedChannel(this.sharedProcessClient.then(c => c.getChannel('telemetryAppender'))); const appender = new TelemetryAppenderClient(channel); const commonProperties = resolveCommonProperties(product.commit, pkg.version, this.environmentService.installSource) - // __GDPR__COMMON__ "common.machineId" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.machineId" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } .then(result => Object.defineProperty(result, 'common.machineId', { get: () => this.storageService.getItem(machineIdStorageKey), enumerable: true diff --git a/src/vs/code/electron-main/menus.ts b/src/vs/code/electron-main/menus.ts index 3cd93fc8e0a..ddde16603a4 100644 --- a/src/vs/code/electron-main/menus.ts +++ b/src/vs/code/electron-main/menus.ts @@ -1241,8 +1241,8 @@ export class CodeMenu { private reportMenuActionTelemetry(id: string): void { /* __GDPR__ "workbencActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id, from: telemetryFrom }); diff --git a/src/vs/editor/common/editorCommonExtensions.ts b/src/vs/editor/common/editorCommonExtensions.ts index dad3900514b..ec7cbbb5d0b 100644 --- a/src/vs/editor/common/editorCommonExtensions.ts +++ b/src/vs/editor/common/editorCommonExtensions.ts @@ -196,8 +196,8 @@ export abstract class EditorAction extends EditorCommand { protected reportTelemetry(accessor: ServicesAccessor, editor: editorCommon.ICommonCodeEditor) { /* __GDPR__ "editorActionInvoked" : { - "name" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "id": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "name" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "id": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${EditorTelemetryData}" ] diff --git a/src/vs/editor/contrib/gotoError/browser/gotoError.ts b/src/vs/editor/contrib/gotoError/browser/gotoError.ts index 023ffb75754..c6d780a5bc8 100644 --- a/src/vs/editor/contrib/gotoError/browser/gotoError.ts +++ b/src/vs/editor/contrib/gotoError/browser/gotoError.ts @@ -408,7 +408,7 @@ class MarkerNavigationAction extends EditorAction { let model = controller.getOrCreateModel(); /* __GDPR__ "zoneWidgetShown" : { - "mode" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "mode" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${EditorTelemetryData}" ] diff --git a/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts b/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts index 2aef9772417..e00a92c8e38 100644 --- a/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts +++ b/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts @@ -163,8 +163,8 @@ export class ReferencesController implements editorCommon.IEditorContribution { dispose: () => { /* __GDPR__ "zoneWidgetShown" : { - "mode" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "elapsedTime": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "mode" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "elapsedTime": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog('zoneWidgetShown', { @@ -199,8 +199,8 @@ export class ReferencesController implements editorCommon.IEditorContribution { /* __GDPR__ "findReferences" : { - "durarion" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "mode": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "durarion" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "mode": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ onDone(duration => this._telemetryService.publicLog('findReferences', { diff --git a/src/vs/editor/contrib/suggest/browser/completionModel.ts b/src/vs/editor/contrib/suggest/browser/completionModel.ts index a47b77f044e..8cbd01e3d13 100644 --- a/src/vs/editor/contrib/suggest/browser/completionModel.ts +++ b/src/vs/editor/contrib/suggest/browser/completionModel.ts @@ -19,9 +19,9 @@ export interface ICompletionItem extends ISuggestionItem { /* __GDPR__FRAGMENT__ "ICompletionStats" : { - "suggestionCount" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "snippetCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "textCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "suggestionCount" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "snippetCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "textCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ // __GDPR__TODO: This is an extensible structure which can not be statically declared. diff --git a/src/vs/editor/contrib/suggest/browser/suggestController.ts b/src/vs/editor/contrib/suggest/browser/suggestController.ts index c9a8630db75..a7a2433e668 100644 --- a/src/vs/editor/contrib/suggest/browser/suggestController.ts +++ b/src/vs/editor/contrib/suggest/browser/suggestController.ts @@ -199,7 +199,7 @@ export class SuggestController implements IEditorContribution { this._alertCompletionItem(item); /* __GDPR__ "suggestSnippetInsert" : { - "suggestionType" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "suggestionType" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${EditorTelemetryData}" ] diff --git a/src/vs/editor/contrib/suggest/browser/suggestWidget.ts b/src/vs/editor/contrib/suggest/browser/suggestWidget.ts index 9952f962ccf..bd6189984ef 100644 --- a/src/vs/editor/contrib/suggest/browser/suggestWidget.ts +++ b/src/vs/editor/contrib/suggest/browser/suggestWidget.ts @@ -730,7 +730,7 @@ export class SuggestWidget implements IContentWidget, IDelegate stats['wasAutomaticallyTriggered'] = !!isAuto; /* __GDPR__ "suggestWidget" : { - "wasAutomaticallyTriggered" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "wasAutomaticallyTriggered" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${ICompletionStats}", "${EditorTelemetryData}" diff --git a/src/vs/platform/contextview/browser/contextMenuHandler.ts b/src/vs/platform/contextview/browser/contextMenuHandler.ts index f61264b3a2e..00479364aba 100644 --- a/src/vs/platform/contextview/browser/contextMenuHandler.ts +++ b/src/vs/platform/contextview/browser/contextMenuHandler.ts @@ -46,8 +46,8 @@ export class ContextMenuHandler { if (this.telemetryService) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: e.action.id, from: 'contextMenu' }); diff --git a/src/vs/platform/extensionManagement/common/extensionManagementUtil.ts b/src/vs/platform/extensionManagement/common/extensionManagementUtil.ts index 78beef0e12c..45292d71eaa 100644 --- a/src/vs/platform/extensionManagement/common/extensionManagementUtil.ts +++ b/src/vs/platform/extensionManagement/common/extensionManagementUtil.ts @@ -65,13 +65,13 @@ export function getLocalExtensionTelemetryData(extension: ILocalExtension): any /* __GDPR__FRAGMENT__ "GalleryExtensionTelemetryData" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "name": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "galleryId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "publisherId": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "publisherName": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "publisherDisplayName": { "endPoint": "none", "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, - "dependencies": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "name": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "galleryId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "publisherId": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "publisherName": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "publisherDisplayName": { "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, + "dependencies": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${GalleryExtensionTelemetryData2}" ] diff --git a/src/vs/platform/extensionManagement/node/extensionGalleryService.ts b/src/vs/platform/extensionManagement/node/extensionGalleryService.ts index b366d44f9d2..257226f03fd 100644 --- a/src/vs/platform/extensionManagement/node/extensionGalleryService.ts +++ b/src/vs/platform/extensionManagement/node/extensionGalleryService.ts @@ -265,9 +265,9 @@ function toExtension(galleryExtension: IRawGalleryExtension, extensionsGalleryUr }, /* __GDPR__FRAGMENT__ "GalleryExtensionTelemetryData2" : { - "index" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "searchText": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "querySource": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "index" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "searchText": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "querySource": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ telemetryData: { @@ -320,8 +320,8 @@ export class ExtensionGalleryService implements IExtensionGalleryService { /* __GDPR__ "galleryService:query" : { - "type" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "text": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "type" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "text": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('galleryService:query', { type, text }); @@ -441,7 +441,7 @@ export class ExtensionGalleryService implements IExtensionGalleryService { const startTime = new Date().getTime(); /* __GDPR__ "galleryService:downloadVSIX" : { - "duration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "duration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, "${include}": [ "${GalleryExtensionTelemetryData}" ] @@ -589,16 +589,16 @@ export class ExtensionGalleryService implements IExtensionGalleryService { const message = getErrorMessage(err); /* __GDPR__ "galleryService:requestError" : { - "url" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "cdn": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "message": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "url" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "cdn": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "message": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('galleryService:requestError', { url, cdn: true, message }); /* __GDPR__ "galleryService:cdnFallback" : { - "url" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "message": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "url" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "message": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('galleryService:cdnFallback', { url, message }); @@ -612,9 +612,9 @@ export class ExtensionGalleryService implements IExtensionGalleryService { const message = getErrorMessage(err); /* __GDPR__ "galleryService:requestError" : { - "url" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "cdn": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "message": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "url" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "cdn": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "message": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('galleryService:requestError', { url: fallbackUrl, cdn: false, message }); diff --git a/src/vs/platform/opener/browser/openerService.ts b/src/vs/platform/opener/browser/openerService.ts index 5e48c5025c4..9425f4a2ea4 100644 --- a/src/vs/platform/opener/browser/openerService.ts +++ b/src/vs/platform/opener/browser/openerService.ts @@ -32,7 +32,7 @@ export class OpenerService implements IOpenerService { /* __GDPR__ "openerService" : { - "scheme" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "scheme" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog('openerService', { scheme: resource.scheme }); diff --git a/src/vs/platform/search/common/search.ts b/src/vs/platform/search/common/search.ts index 0c56bae5e39..cc86f27e2a3 100644 --- a/src/vs/platform/search/common/search.ts +++ b/src/vs/platform/search/common/search.ts @@ -72,12 +72,12 @@ export enum QueryType { } /* __GDPR__FRAGMENT__ "IPatternInfo" : { - "pattern" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "isRegExp": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "isWordMatch": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "wordSeparators": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "isMultiline": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "isCaseSensitive": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "pattern" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "isRegExp": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "isWordMatch": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "wordSeparators": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "isMultiline": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "isCaseSensitive": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface IPatternInfo { diff --git a/src/vs/platform/telemetry/browser/errorTelemetry.ts b/src/vs/platform/telemetry/browser/errorTelemetry.ts index e9489eaab4c..0e017ed13d1 100644 --- a/src/vs/platform/telemetry/browser/errorTelemetry.ts +++ b/src/vs/platform/telemetry/browser/errorTelemetry.ts @@ -145,12 +145,12 @@ export default class ErrorTelemetry { for (let error of this._buffer) { /* __GDPR__ "UnhandledError" : { - "message" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "name": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "stack": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "id": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "line": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "column": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "message" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "name": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "stack": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "id": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "line": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "column": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ // __GDPR__TODO more properties are missing diff --git a/src/vs/platform/telemetry/common/experiments.ts b/src/vs/platform/telemetry/common/experiments.ts index 710c0d2a179..d3636665fd0 100644 --- a/src/vs/platform/telemetry/common/experiments.ts +++ b/src/vs/platform/telemetry/common/experiments.ts @@ -10,7 +10,7 @@ import { createDecorator } from 'vs/platform/instantiation/common/instantiation' /* __GDPR__FRAGMENT__ "IExperiments" : { - "deployToAzureQuickLink" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "deployToAzureQuickLink" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface IExperiments { diff --git a/src/vs/platform/telemetry/common/telemetryService.ts b/src/vs/platform/telemetry/common/telemetryService.ts index f3d5a7b11a2..826c751b7ce 100644 --- a/src/vs/platform/telemetry/common/telemetryService.ts +++ b/src/vs/platform/telemetry/common/telemetryService.ts @@ -67,7 +67,7 @@ export class TelemetryService implements ITelemetryService { this._configurationService.onDidUpdateConfiguration(this._updateUserOptIn, this, this._disposables); /* __GDPR__ "optInStatus" : { - "optIn" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "BusinessInsight" } + "optIn" : { "classification": "SystemMetaData", "purpose": "BusinessInsight" } } */ this.publicLog('optInStatus', { optIn: this._userOptIn }); diff --git a/src/vs/platform/telemetry/common/telemetryUtils.ts b/src/vs/platform/telemetry/common/telemetryUtils.ts index 7e78904491d..f530c77d794 100644 --- a/src/vs/platform/telemetry/common/telemetryUtils.ts +++ b/src/vs/platform/telemetry/common/telemetryUtils.ts @@ -68,9 +68,9 @@ export function anonymize(input: string): string { /* __GDPR__FRAGMENT__ "URIDescriptor" : { - "mimeType" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "ext": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "path": { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" } + "mimeType" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "ext": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "path": { "classification": "CustomerContent", "purpose": "FeatureInsight" } } */ export interface URIDescriptor { @@ -189,8 +189,8 @@ export function configurationTelemetry(telemetryService: ITelemetryService, conf if (event.source !== ConfigurationSource.Default) { /* __GDPR__ "updateConfiguration" : { - "configurationSource" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "configurationKeys": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "configurationSource" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "configurationKeys": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ telemetryService.publicLog('updateConfiguration', { @@ -199,8 +199,8 @@ export function configurationTelemetry(telemetryService: ITelemetryService, conf }); /* __GDPR__ "updateConfigurationValues" : { - "configurationSource" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "configurationValues": { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" } + "configurationSource" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "configurationValues": { "classification": "CustomerContent", "purpose": "FeatureInsight" } } */ telemetryService.publicLog('updateConfigurationValues', { @@ -215,7 +215,7 @@ export function lifecycleTelemetry(telemetryService: ITelemetryService, lifecycl return lifecycleService.onShutdown(event => { /* __GDPR__ "shutdown" : { - "reason" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "reason" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ telemetryService.publicLog('shutdown', { reason: ShutdownReason[event] }); @@ -227,7 +227,7 @@ export function keybindingsTelemetry(telemetryService: ITelemetryService, keybin if (event.source === KeybindingSource.User && event.keybindings) { /* __GDPR__ "updateKeybindings" : { - "bindings": { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" } + "bindings": { "classification": "CustomerContent", "purpose": "FeatureInsight" } } */ telemetryService.publicLog('updateKeybindings', { diff --git a/src/vs/platform/telemetry/node/commonProperties.ts b/src/vs/platform/telemetry/node/commonProperties.ts index ff4b81f29b4..e8a16e6e06e 100644 --- a/src/vs/platform/telemetry/node/commonProperties.ts +++ b/src/vs/platform/telemetry/node/commonProperties.ts @@ -14,19 +14,19 @@ export const machineIdIpcChannel = 'vscode:machineId'; export function resolveCommonProperties(commit: string, version: string, source: string): TPromise<{ [name: string]: string; }> { const result: { [name: string]: string; } = Object.create(null); - // __GDPR__COMMON__ "sessionID" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "sessionID" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['sessionID'] = uuid.generateUuid() + Date.now(); - // __GDPR__COMMON__ "commitHash" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "commitHash" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['commitHash'] = commit; - // __GDPR__COMMON__ "version" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "version" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['version'] = version; - // __GDPR__COMMON__ "common.osVersion" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.osVersion" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.osVersion'] = os.release(); - // __GDPR__COMMON__ "common.platfrom" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.platfrom" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.platform'] = Platform.Platform[Platform.platform]; - // __GDPR__COMMON__ "common.nodePlatform" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.nodePlatform" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.nodePlatform'] = process.platform; - // __GDPR__COMMON__ "common.nodeArch" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.nodeArch" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.nodeArch'] = process.arch; result['common.source'] = source; @@ -34,17 +34,17 @@ export function resolveCommonProperties(commit: string, version: string, source: let seq = 0; const startTime = Date.now(); Object.defineProperties(result, { - // __GDPR__COMMON__ "timestamp" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "timestamp" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } 'timestamp': { get: () => new Date(), enumerable: true }, - // __GDPR__COMMON__ "common.timesincesessionstart" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.timesincesessionstart" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } 'common.timesincesessionstart': { get: () => Date.now() - startTime, enumerable: true }, - // __GDPR__COMMON__ "common.sequence" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.sequence" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } 'common.sequence': { get: () => seq++, enumerable: true diff --git a/src/vs/platform/telemetry/node/workbenchCommonProperties.ts b/src/vs/platform/telemetry/node/workbenchCommonProperties.ts index df83c2ff004..01920c0c380 100644 --- a/src/vs/platform/telemetry/node/workbenchCommonProperties.ts +++ b/src/vs/platform/telemetry/node/workbenchCommonProperties.ts @@ -16,11 +16,11 @@ const SQM_KEY: string = '\\Software\\Microsoft\\SQMClient'; export function resolveWorkbenchCommonProperties(storageService: IStorageService, commit: string, version: string, source: string): TPromise<{ [name: string]: string }> { return resolveCommonProperties(commit, version, source).then(result => { - // __GDPR__COMMON__ "common.version.shell" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.version.shell" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.version.shell'] = process.versions && (process).versions['electron']; - // __GDPR__COMMON__ "common.version.renderer" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.version.renderer" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.version.renderer'] = process.versions && (process).versions['chrome']; - // __GDPR__COMMON__ "common.osVersion" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.osVersion" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.osVersion'] = os.release(); const lastSessionDate = storageService.get('telemetry.lastSessionDate'); @@ -28,17 +28,17 @@ export function resolveWorkbenchCommonProperties(storageService: IStorageService storageService.store('telemetry.firstSessionDate', firstSessionDate); storageService.store('telemetry.lastSessionDate', new Date().toUTCString()); - // __GDPR__COMMON__ "common.firstSessionDate" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.firstSessionDate" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.firstSessionDate'] = firstSessionDate; - // __GDPR__COMMON__ "common.lastSessionDate" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.lastSessionDate" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.lastSessionDate'] = lastSessionDate; - // __GDPR__COMMON__ "common.isNewSession" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.isNewSession" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } result['common.isNewSession'] = !lastSessionDate ? '1' : '0'; const promises: TPromise[] = []; - // __GDPR__COMMON__ "common.instanceId" : { "endPoint": "none", "classification": "EndUserPseudonymizedInformation", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.instanceId" : { "classification": "EndUserPseudonymizedInformation", "purpose": "FeatureInsight" } promises.push(getOrCreateInstanceId(storageService).then(value => result['common.instanceId'] = value)); - // __GDPR__COMMON__ "common.machineId" : { "endPoint": "none", "classification": "EndUserPseudonymizedInformation", "purpose": "FeatureInsight" } + // __GDPR__COMMON__ "common.machineId" : { "classification": "EndUserPseudonymizedInformation", "purpose": "FeatureInsight" } promises.push(getOrCreateMachineId(storageService).then(value => result['common.machineId'] = value)); if (process.platform === 'win32') { diff --git a/src/vs/platform/update/electron-main/updateService.ts b/src/vs/platform/update/electron-main/updateService.ts index 091075c6364..e38d809b297 100644 --- a/src/vs/platform/update/electron-main/updateService.ts +++ b/src/vs/platform/update/electron-main/updateService.ts @@ -166,7 +166,7 @@ export class UpdateService implements IUpdateService { this.state = State.Idle; /* __GDPR__ "update:notAvailable" : { - "explicit" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "explicit" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('update:notAvailable', { explicit }); @@ -184,9 +184,9 @@ export class UpdateService implements IUpdateService { this.state = State.UpdateAvailable; /* __GDPR__ "update:available" : { - "explicit" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "version": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "currentVersion": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "explicit" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "version": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "currentVersion": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('update:available', { explicit, version: update.version, currentVersion: product.commit }); @@ -203,7 +203,7 @@ export class UpdateService implements IUpdateService { this.state = State.UpdateDownloaded; /* __GDPR__ "update:downloaded" : { - "version" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "version" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('update:downloaded', { version: update.version }); diff --git a/src/vs/workbench/api/electron-browser/mainThreadEditors.ts b/src/vs/workbench/api/electron-browser/mainThreadEditors.ts index b27dcf1b64c..81f605b88a3 100644 --- a/src/vs/workbench/api/electron-browser/mainThreadEditors.ts +++ b/src/vs/workbench/api/electron-browser/mainThreadEditors.ts @@ -142,7 +142,7 @@ export class MainThreadEditors implements MainThreadEditorsShape { // check how often this is used /* __GDPR__ "api.deprecated" : { - "function" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "function" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog('api.deprecated', { function: 'TextEditor.show' }); @@ -162,7 +162,7 @@ export class MainThreadEditors implements MainThreadEditorsShape { // check how often this is used /* __GDPR__ "api.deprecated" : { - "function" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "function" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog('api.deprecated', { function: 'TextEditor.hide' }); diff --git a/src/vs/workbench/api/electron-browser/mainThreadSaveParticipant.ts b/src/vs/workbench/api/electron-browser/mainThreadSaveParticipant.ts index e78e624bdba..830c46aa697 100644 --- a/src/vs/workbench/api/electron-browser/mainThreadSaveParticipant.ts +++ b/src/vs/workbench/api/electron-browser/mainThreadSaveParticipant.ts @@ -271,11 +271,11 @@ export class SaveParticipant implements ISaveParticipant { "${wildcard}": [ { "${prefix}": "Success-", - "${classification}": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "${classification}": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } }, { "${prefix}": "Failure-", - "${classification}": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "${classification}": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } ] } diff --git a/src/vs/workbench/api/electron-browser/mainThreadTelemetry.ts b/src/vs/workbench/api/electron-browser/mainThreadTelemetry.ts index 0fbadd2148c..af7e60b99ae 100644 --- a/src/vs/workbench/api/electron-browser/mainThreadTelemetry.ts +++ b/src/vs/workbench/api/electron-browser/mainThreadTelemetry.ts @@ -27,7 +27,7 @@ export class MainThreadTelemetry implements MainThreadTelemetryShape { $publicLog(eventName: string, data: any = Object.create(null)): void { /* __GDPR__FRAGMENT__ "MainThreadData" : { - "pluginHostTelemetry" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "pluginHostTelemetry" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ data[MainThreadTelemetry._name] = true; diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index 1ffa8bddc7c..6d402d24a05 100644 --- a/src/vs/workbench/api/node/extHost.api.impl.ts +++ b/src/vs/workbench/api/node/extHost.api.impl.ts @@ -147,8 +147,8 @@ export function createApiFactory( this._seen.add(apiName); /* __GDPR__ "apiUsage" : { - "name" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extension": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "name" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extension": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${MainThreadData}" ] @@ -505,9 +505,9 @@ export function createApiFactory( createSourceControl(id: string, label: string, rootUri?: vscode.Uri) { /* __GDPR__ "registerSCMProvider" : { - "extensionId" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "providerId": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "providerLabel": { "endPoint": "none", "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, + "extensionId" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "providerId": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "providerLabel": { "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, "${include}": [ "${MainThreadData}" ] diff --git a/src/vs/workbench/api/node/extHostExtensionService.ts b/src/vs/workbench/api/node/extHostExtensionService.ts index 6555a222bf9..407a5a6cd58 100644 --- a/src/vs/workbench/api/node/extHostExtensionService.ts +++ b/src/vs/workbench/api/node/extHostExtensionService.ts @@ -389,15 +389,15 @@ function loadCommonJSModule(modulePath: string, activationTimesBuilder: Exten function getTelemetryActivationEvent(extensionDescription: IExtensionDescription): any { /* __GDPR__FRAGMENT__ "TelemetryActivationEvent" : { - "id": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "name": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "publisherDisplayName": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "activationEvents": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "isBuiltin": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "id": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "name": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "publisherDisplayName": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "activationEvents": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "isBuiltin": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${wildcard}": [ { "${prefix}": "contribution.", - "${classification}": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "${classification}": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } ] } diff --git a/src/vs/workbench/api/node/extHostTextEditor.ts b/src/vs/workbench/api/node/extHostTextEditor.ts index af6d437a17d..dde54d0e6f2 100644 --- a/src/vs/workbench/api/node/extHostTextEditor.ts +++ b/src/vs/workbench/api/node/extHostTextEditor.ts @@ -597,8 +597,8 @@ export class ExtHostTextEditor2 extends ExtHostTextEditor { if (extension) { /* __GDPR__ "usesCommandLink" : { - "extension" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extension" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${MainThreadData}" ] diff --git a/src/vs/workbench/browser/composite.ts b/src/vs/workbench/browser/composite.ts index 8d2782a6ccd..cfcb5993fe9 100644 --- a/src/vs/workbench/browser/composite.ts +++ b/src/vs/workbench/browser/composite.ts @@ -110,7 +110,7 @@ export abstract class Composite extends Component implements IComposite { const eventName: string = 'compositeOpen'; /* __GDPR__ "compositeOpen" : { - "composite" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "composite" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog(eventName, { composite: this.getId() }); @@ -128,8 +128,8 @@ export abstract class Composite extends Component implements IComposite { this._telemetryData.composite = this.getId(); /* __GDPR__ "compositeShown" : { - "timeSpent" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "composite": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "timeSpent" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "composite": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog(eventName, this._telemetryData); diff --git a/src/vs/workbench/browser/parts/compositePart.ts b/src/vs/workbench/browser/parts/compositePart.ts index ff110ab1c76..acdcbc9975d 100644 --- a/src/vs/workbench/browser/parts/compositePart.ts +++ b/src/vs/workbench/browser/parts/compositePart.ts @@ -311,8 +311,8 @@ export abstract class CompositePart extends Part { if (this.telemetryService) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: e.action.id, from: this.nameForTelemetry }); diff --git a/src/vs/workbench/browser/parts/editor/editorPart.ts b/src/vs/workbench/browser/parts/editor/editorPart.ts index 0ce8f44976c..c05d8b9031c 100644 --- a/src/vs/workbench/browser/parts/editor/editorPart.ts +++ b/src/vs/workbench/browser/parts/editor/editorPart.ts @@ -342,7 +342,7 @@ export class EditorPart extends Part implements IEditorPart, IEditorGroupService if (position !== Position.ONE) { /* __GDPR__ "workbenchSideEditorOpened" : { - "position" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "position" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchSideEditorOpened', { position: position }); diff --git a/src/vs/workbench/browser/parts/editor/titleControl.ts b/src/vs/workbench/browser/parts/editor/titleControl.ts index 0f3c92d3834..4cb58efa3c6 100644 --- a/src/vs/workbench/browser/parts/editor/titleControl.ts +++ b/src/vs/workbench/browser/parts/editor/titleControl.ts @@ -261,8 +261,8 @@ export abstract class TitleControl extends Themable implements ITitleAreaControl if (this.telemetryService) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: e.action.id, from: 'editorPart' }); diff --git a/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts b/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts index aa65a85917f..ccc519931c9 100644 --- a/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts +++ b/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts @@ -554,7 +554,7 @@ export class QuickOpenController extends Component implements IQuickOpenService /* __GDPR__ "quickOpenWidgetShown" : { - "mode" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "mode" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "quickNavigate": { "${inline}": [ "${IQuickNavigateConfiguration}" ] } } */ diff --git a/src/vs/workbench/browser/parts/statusbar/statusbarPart.ts b/src/vs/workbench/browser/parts/statusbar/statusbarPart.ts index 3714236aa0a..de1e639aeeb 100644 --- a/src/vs/workbench/browser/parts/statusbar/statusbarPart.ts +++ b/src/vs/workbench/browser/parts/statusbar/statusbarPart.ts @@ -295,8 +295,8 @@ class StatusBarEntryItem implements IStatusbarItem { if (action.enabled) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: action.id, from: 'status bar' }); diff --git a/src/vs/workbench/common/actions.ts b/src/vs/workbench/common/actions.ts index 24a43473a4b..b8557349a2b 100644 --- a/src/vs/workbench/common/actions.ts +++ b/src/vs/workbench/common/actions.ts @@ -172,8 +172,8 @@ function triggerAndDisposeAction(instantitationService: IInstantiationService, t if (telemetryService) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ telemetryService.publicLog('workbenchActionExecuted', { id: actionInstance.id, from }); diff --git a/src/vs/workbench/common/editor.ts b/src/vs/workbench/common/editor.ts index 9e4b4959580..3674332592e 100644 --- a/src/vs/workbench/common/editor.ts +++ b/src/vs/workbench/common/editor.ts @@ -205,7 +205,7 @@ export abstract class EditorInput implements IEditorInput { public getTelemetryDescriptor(): object { /* __GDPR__FRAGMENT__ "EditorTelemetryDescriptor" : { - "typeId" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "typeId" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ return { typeId: this.getTypeId() }; @@ -799,15 +799,15 @@ export const EditorOpenPositioning = { export interface IWorkbenchEditorConfiguration { /* __GDPR__FRAGMENT__ "IWorkbenchEditorConfiguration" : { - "showTabs" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "tabCloseButton": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "showIcons": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "enablePreview": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "enablePreviewFromQuickOpen": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "closeOnFileDelete": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "openPositioning": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "revealIfOpen": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "swipeToNavigate": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "showTabs" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "tabCloseButton": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "showIcons": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "enablePreview": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "enablePreviewFromQuickOpen": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "closeOnFileDelete": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "openPositioning": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "revealIfOpen": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "swipeToNavigate": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ workbench: { diff --git a/src/vs/workbench/electron-browser/nodeCachedDataManager.ts b/src/vs/workbench/electron-browser/nodeCachedDataManager.ts index e275bac0b75..b7c4c9e36d5 100644 --- a/src/vs/workbench/electron-browser/nodeCachedDataManager.ts +++ b/src/vs/workbench/electron-browser/nodeCachedDataManager.ts @@ -34,8 +34,8 @@ export class NodeCachedDataManager { if (err) { /* __GDPR__ "cachedDataError" : { - "errorCode" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "path": { "endPoint": "none", "classification": "CustomerContent", "purpose": "PerformanceAndHealth" } + "errorCode" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "path": { "classification": "CustomerContent", "purpose": "PerformanceAndHealth" } } */ this._telemetryService.publicLog('cachedDataError', { @@ -48,9 +48,9 @@ export class NodeCachedDataManager { // log summary /* __GDPR__ "cachedDataInfo" : { - "didRequestCachedData" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "didRejectCachedData": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "didProduceCachedData": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "didRequestCachedData" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "didRejectCachedData": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "didProduceCachedData": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ this._telemetryService.publicLog('cachedDataInfo', { diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/workbench/electron-browser/shell.ts index 86afd96a877..ed0c0605689 100644 --- a/src/vs/workbench/electron-browser/shell.ts +++ b/src/vs/workbench/electron-browser/shell.ts @@ -201,24 +201,24 @@ export class WorkbenchShell { const { filesToOpen, filesToCreate, filesToDiff } = this.configuration; /* __GDPR__ "workspaceLoad" : { - "userAgent" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "windowSize.innerHeight": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "windowSize.innerWidth": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "windowSize.outerHeight": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "windowSize.outerWidth": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "emptyWorkbench": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "workbench.filesToOpen": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "workbench.filesToCreate": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "workbench.filesToDiff": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "customKeybindingsCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "theme": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "language": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "BusinessInsight" }, + "userAgent" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "windowSize.innerHeight": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "windowSize.innerWidth": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "windowSize.outerHeight": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "windowSize.outerWidth": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "emptyWorkbench": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "workbench.filesToOpen": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "workbench.filesToCreate": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "workbench.filesToDiff": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "customKeybindingsCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "theme": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "language": { "classification": "SystemMetaData", "purpose": "BusinessInsight" }, "experiments": { "${inline}": [ "${IExperiments}" ] }, - "pinnedViewlets": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "restoredViewlet": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "restoredEditors": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "pinnedViewlets": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "startupKind": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "pinnedViewlets": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "restoredViewlet": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "restoredEditors": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "pinnedViewlets": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "startupKind": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workspaceLoad', { diff --git a/src/vs/workbench/electron-browser/window.ts b/src/vs/workbench/electron-browser/window.ts index 0223d59c2d9..e11a4d36565 100644 --- a/src/vs/workbench/electron-browser/window.ts +++ b/src/vs/workbench/electron-browser/window.ts @@ -147,8 +147,8 @@ export class ElectronWindow extends Themable { this.commandService.executeCommand(request.id, ...args).done(_ => { /* __GDPR__ "commandExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('commandExecuted', { id: request.id, from: request.from }); diff --git a/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts b/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts index 3c1e657aa10..911399623f6 100644 --- a/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts +++ b/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts @@ -104,8 +104,8 @@ export class DebugActionsWidget extends Themable implements IWorkbenchContributi if (this.telemetryService) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: e.action.id, from: 'debugActionsWidget' }); @@ -149,7 +149,7 @@ export class DebugActionsWidget extends Themable implements IWorkbenchContributi this.storageService.store(DEBUG_ACTIONS_WIDGET_POSITION_KEY, position, StorageScope.WORKSPACE); /* __GDPR__ "debug.actionswidgetposition" : { - "position" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "position" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(DEBUG_ACTIONS_WIDGET_POSITION_KEY, { position }); diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 765a7dfa83d..d5876550999 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -915,13 +915,13 @@ export class DebugService implements debug.IDebugService { /* __GDPR__ "debugSessionStart" : { - "type": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "breakpointCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "exceptionBreakpoints": { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "watchExpressionsCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionName": { "endPoint": "none", "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, - "isBuiltin": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "launchJsonExists": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "breakpointCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "exceptionBreakpoints": { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "watchExpressionsCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionName": { "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, + "isBuiltin": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "launchJsonExists": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ return this.telemetryService.publicLog('debugSessionStart', { @@ -942,8 +942,8 @@ export class DebugService implements debug.IDebugService { const errorMessage = error instanceof Error ? error.message : error; /* __GDPR__ "debugMisconfiguration" : { - "type" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "error": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "type" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "error": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('debugMisconfiguration', { type: configuration ? configuration.type : undefined, error: errorMessage }); @@ -1062,11 +1062,11 @@ export class DebugService implements debug.IDebugService { const process = this.model.getProcesses().filter(p => p.getId() === session.getId()).pop(); /* __GDPR__ "debugSessionStop" : { - "type" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "success": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "sessionLengthInSeconds": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "breakpointCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "watchExpressionsCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "type" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "success": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "sessionLengthInSeconds": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "breakpointCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "watchExpressionsCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('debugSessionStop', { diff --git a/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts b/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts index e0972aee21e..286e29524f5 100644 --- a/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts +++ b/src/vs/workbench/parts/debug/electron-browser/rawDebugSession.ts @@ -166,14 +166,14 @@ export class RawDebugSession extends V8Protocol implements debug.ISession { if (error && error.sendTelemetry) { /* __GDPR__ "debugProtocolErrorResponse" : { - "error" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "error" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('debugProtocolErrorResponse', { error: telemetryMessage }); if (this.customTelemetryService) { /* __GDPR__ "debugProtocolErrorResponse" : { - "error" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "error" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.customTelemetryService.publicLog('debugProtocolErrorResponse', { error: telemetryMessage }); diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionTipsService.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionTipsService.ts index 2bb34cc14b2..961d417aec6 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionTipsService.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionTipsService.ts @@ -116,8 +116,8 @@ export class ExtensionTipsService implements IExtensionTipsService { /* __GDPR__ "extensionRecommendations:unfiltered" : { - "fileBased" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "exeBased": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "fileBased" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "exeBased": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionRecommendations:unfiltered', { fileBased, exeBased }); @@ -255,7 +255,7 @@ export class ExtensionTipsService implements IExtensionTipsService { case 0: /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "extensionId": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" } } */ @@ -269,7 +269,7 @@ export class ExtensionTipsService implements IExtensionTipsService { ); /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "extensionId": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" } } */ @@ -278,7 +278,7 @@ export class ExtensionTipsService implements IExtensionTipsService { case 2: /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "extensionId": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" } } */ @@ -287,7 +287,7 @@ export class ExtensionTipsService implements IExtensionTipsService { }, () => { /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "extensionId": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" } } */ @@ -337,7 +337,7 @@ export class ExtensionTipsService implements IExtensionTipsService { case 0: /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionWorkspaceRecommendations:popup', { userReaction: 'show' }); @@ -345,7 +345,7 @@ export class ExtensionTipsService implements IExtensionTipsService { case 1: /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionWorkspaceRecommendations:popup', { userReaction: 'neverShowAgain' }); @@ -353,7 +353,7 @@ export class ExtensionTipsService implements IExtensionTipsService { case 2: /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionWorkspaceRecommendations:popup', { userReaction: 'close' }); @@ -361,7 +361,7 @@ export class ExtensionTipsService implements IExtensionTipsService { }, () => { /* __GDPR__ "extensionRecommendations:popup" : { - "userReaction" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "userReaction" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionWorkspaceRecommendations:popup', { userReaction: 'cancelled' }); diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsUtils.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsUtils.ts index 131b9e1202b..824757fac4d 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsUtils.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsUtils.ts @@ -70,8 +70,8 @@ export class KeymapExtensions implements IWorkbenchContribution { private promptForDisablingOtherKeymaps(newKeymap: IExtensionStatus, oldKeymaps: IExtensionStatus[]): TPromise { /* __GDPR__FRAGMENT__ "KeyMapsData" : { - "newKeymap" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "oldKeymaps": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "newKeymap" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "oldKeymaps": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ const telemetryData: { [key: string]: any; } = { @@ -98,7 +98,7 @@ export class KeymapExtensions implements IWorkbenchContribution { telemetryData['confirmed'] = confirmed; /* __GDPR__ "disableOtherKeymaps" : { - "confirmed" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "confirmed" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${KeyMapsData}" ] @@ -185,7 +185,7 @@ export class BetterMergeDisabled implements IWorkbenchContribution { new Action('uninstall', localize('uninstall', "Uninstall"), null, true, () => { /* __GDPR__ "betterMergeUninstall" : { - "outcome" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ telemetryService.publicLog('betterMergeUninstall', { @@ -199,7 +199,7 @@ export class BetterMergeDisabled implements IWorkbenchContribution { new Action('later', localize('later', "Later"), null, true, () => { /* __GDPR__ "betterMergeUninstall" : { - "outcome" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "outcome" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ telemetryService.publicLog('betterMergeUninstall', { diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsViews.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsViews.ts index 43e7b1101bd..5feec62cd87 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsViews.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsViews.ts @@ -317,7 +317,7 @@ export class ExtensionsListView extends ViewsViewletPanel { /* __GDPR__ "extensionRecommendations:open" : { - "count" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "count" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionRecommendations:open', { count: names.length }); @@ -341,7 +341,7 @@ export class ExtensionsListView extends ViewsViewletPanel { const names = recommendations.filter(name => name.toLowerCase().indexOf(value) > -1); /* __GDPR__ "extensionWorkspaceRecommendations:open" : { - "count" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "count" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionWorkspaceRecommendations:open', { count: names.length }); @@ -361,7 +361,7 @@ export class ExtensionsListView extends ViewsViewletPanel { .filter(name => name.toLowerCase().indexOf(value) > -1); /* __GDPR__ "extensionKeymapRecommendations:open" : { - "count" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "count" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('extensionKeymapRecommendations:open', { count: names.length }); diff --git a/src/vs/workbench/parts/extensions/node/extensionsWorkbenchService.ts b/src/vs/workbench/parts/extensions/node/extensionsWorkbenchService.ts index 3fbd5d0ce92..5b860f40dfc 100644 --- a/src/vs/workbench/parts/extensions/node/extensionsWorkbenchService.ts +++ b/src/vs/workbench/parts/extensions/node/extensionsWorkbenchService.ts @@ -817,7 +817,7 @@ export class ExtensionsWorkbenchService implements IExtensionsWorkbenchService { /* __GDPR__ "extensionGallery:install" : { - "duration" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${GalleryExtensionTelemetryData}" ] @@ -825,7 +825,7 @@ export class ExtensionsWorkbenchService implements IExtensionsWorkbenchService { */ /* __GDPR__ "extensionGallery:update" : { - "duration" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${GalleryExtensionTelemetryData}" ] @@ -833,7 +833,7 @@ export class ExtensionsWorkbenchService implements IExtensionsWorkbenchService { */ /* __GDPR__ "extensionGallery:uninstall" : { - "duration" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "duration" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "${include}": [ "${GalleryExtensionTelemetryData}" ] diff --git a/src/vs/workbench/parts/files/browser/views/explorerViewer.ts b/src/vs/workbench/parts/files/browser/views/explorerViewer.ts index c4d5a48b5e4..833836aa42d 100644 --- a/src/vs/workbench/parts/files/browser/views/explorerViewer.ts +++ b/src/vs/workbench/parts/files/browser/views/explorerViewer.ts @@ -539,8 +539,8 @@ export class FileController extends DefaultController { if (stat && !stat.isDirectory) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: 'workbench.files.openFile', from: 'explorer' }); diff --git a/src/vs/workbench/parts/files/browser/views/openEditorsViewer.ts b/src/vs/workbench/parts/files/browser/views/openEditorsViewer.ts index 6f243b32a3b..578e93f3e0e 100644 --- a/src/vs/workbench/parts/files/browser/views/openEditorsViewer.ts +++ b/src/vs/workbench/parts/files/browser/views/openEditorsViewer.ts @@ -275,8 +275,8 @@ export class Controller extends DefaultController { if (element) { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: 'workbench.files.openFile', from: 'openEditors' }); diff --git a/src/vs/workbench/parts/markers/browser/markersPanel.ts b/src/vs/workbench/parts/markers/browser/markersPanel.ts index 789d16386a1..89563149e77 100644 --- a/src/vs/workbench/parts/markers/browser/markersPanel.ts +++ b/src/vs/workbench/parts/markers/browser/markersPanel.ts @@ -150,7 +150,7 @@ export class MarkersPanel extends Panel { const marker: Marker = element; /* __GDPR__ "problems.marker.opened" : { - "source" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "source" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('problems.marker.opened', { source: marker.marker.source }); diff --git a/src/vs/workbench/parts/markers/browser/markersPanelActions.ts b/src/vs/workbench/parts/markers/browser/markersPanelActions.ts index c5949b625d1..7459d9d0ded 100644 --- a/src/vs/workbench/parts/markers/browser/markersPanelActions.ts +++ b/src/vs/workbench/parts/markers/browser/markersPanelActions.ts @@ -143,9 +143,9 @@ export class FilterInputBoxActionItem extends BaseActionItem { data['infos'] = this.markersPanel.markersModel.filterOptions.filterInfos; /* __GDPR__ "problems.filter" : { - "errors" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "warnings": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "infos": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "errors" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "warnings": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "infos": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('problems.filter', data); diff --git a/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts b/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts index 8d3f4b450d7..0598ee9d189 100644 --- a/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts +++ b/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts @@ -523,8 +523,8 @@ export class KeybindingsEditor extends BaseEditor implements IKeybindingsEditor this.latestEmptyFilters = []; /* __GDPR__ "keybindings.filter" : { - "filter": { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "emptyFilters" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "filter": { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "emptyFilters" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('keybindings.filter', data); diff --git a/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts b/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts index 88f34ac6d75..3aedcefcd57 100644 --- a/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts +++ b/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts @@ -325,8 +325,8 @@ export class PreferencesEditor extends BaseEditor { this.latestEmptyFilters = []; /* __GDPR__ "defaultSettings.filter" : { - "filter": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "emptyFilters" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "filter": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "emptyFilters" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('defaultSettings.filter', data); diff --git a/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts b/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts index 5fe824ea566..a3b86ba458f 100644 --- a/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts +++ b/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts @@ -110,7 +110,7 @@ export class UserSettingsRenderer extends Disposable implements IPreferencesRend public updatePreference(key: string, value: any, source: ISetting): void { /* __GDPR__ "defaultSettingsActions.copySetting" : { - "userConfigurationKeys" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "userConfigurationKeys" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('defaultSettingsActions.copySetting', { userConfigurationKeys: [key] }); diff --git a/src/vs/workbench/parts/preferences/browser/preferencesService.ts b/src/vs/workbench/parts/preferences/browser/preferencesService.ts index e86ff9e79b4..203b3487e0a 100644 --- a/src/vs/workbench/parts/preferences/browser/preferencesService.ts +++ b/src/vs/workbench/parts/preferences/browser/preferencesService.ts @@ -225,7 +225,7 @@ export class PreferencesService extends Disposable implements IPreferencesServic openGlobalKeybindingSettings(textual: boolean): TPromise { /* __GDPR__ "openKeybindings" : { - "textual" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "textual" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('openKeybindings', { textual }); diff --git a/src/vs/workbench/parts/quickopen/browser/commandsHandler.ts b/src/vs/workbench/parts/quickopen/browser/commandsHandler.ts index 050f5080172..a09aaf6b7b8 100644 --- a/src/vs/workbench/parts/quickopen/browser/commandsHandler.ts +++ b/src/vs/workbench/parts/quickopen/browser/commandsHandler.ts @@ -299,8 +299,8 @@ abstract class BaseCommandEntry extends QuickOpenEntryGroup { try { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: action.id, from: 'quick open' }); diff --git a/src/vs/workbench/parts/search/browser/openAnythingHandler.ts b/src/vs/workbench/parts/search/browser/openAnythingHandler.ts index 63f575866b8..bf411c9079a 100644 --- a/src/vs/workbench/parts/search/browser/openAnythingHandler.ts +++ b/src/vs/workbench/parts/search/browser/openAnythingHandler.ts @@ -34,32 +34,32 @@ interface ISearchWithRange { /* __GDPR__FRAGMENT__ "ITimerEventData" : { - "searchLength" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "unsortedResultDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "sortedResultDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "resultCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "symbols.fromCache": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.fromCache": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.unsortedResultDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.sortedResultDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.resultCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.traversal": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.errors": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.fileWalkStartDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.fileWalkResultDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.directoriesWalked": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.filesWalked": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.cmdForkStartTime": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.cmdForkResultTime": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.cmdResultCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.cacheLookupStartDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.cacheFilterStartDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.cacheLookupResultDuration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "files.cacheEntryCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "searchLength" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "unsortedResultDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "sortedResultDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "resultCount": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "symbols.fromCache": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.fromCache": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.unsortedResultDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.sortedResultDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.resultCount": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.traversal": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.errors": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.fileWalkStartDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.fileWalkResultDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.directoriesWalked": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.filesWalked": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.cmdForkStartTime": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.cmdForkResultTime": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.cmdResultCount": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.cacheLookupStartDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.cacheFilterStartDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.cacheLookupResultDuration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "files.cacheEntryCount": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, "${wildcard}": [ { "${prefix}": "files.joined", - "${classification}": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "${classification}": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } ] } @@ -243,7 +243,7 @@ export class OpenAnythingHandler extends QuickOpenHandler { /* __GDPR__ "openAnything" : { - "duration" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "duration" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, "${include}": [ "${ITimerEventData}" ] diff --git a/src/vs/workbench/parts/search/common/searchModel.ts b/src/vs/workbench/parts/search/common/searchModel.ts index a02fb3fed95..ad4f3ad0ffb 100644 --- a/src/vs/workbench/parts/search/common/searchModel.ts +++ b/src/vs/workbench/parts/search/common/searchModel.ts @@ -570,7 +570,7 @@ export class SearchResult extends Disposable { const onDone = stopwatch(fromPromise(promise)); /* __GDPR__ "replaceAll.started" : { - "duration" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "duration" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ onDone(duration => this.telemetryService.publicLog('replaceAll.started', { duration })); @@ -732,7 +732,7 @@ export class SearchModel extends Disposable { const onFirstRenderStopwatch = stopwatch(onFirstRender); /* __GDPR__ "searchResultsFirstRender" : { - "duration" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "duration" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ onFirstRenderStopwatch(duration => this.telemetryService.publicLog('searchResultsFirstRender', { duration })); @@ -742,7 +742,7 @@ export class SearchModel extends Disposable { /* __GDPR__ "searchResultsFinished" : { - "duration" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "duration" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ onDoneStopwatch(duration => this.telemetryService.publicLog('searchResultsFinished', { duration })); @@ -771,11 +771,11 @@ export class SearchModel extends Disposable { delete options.pattern; /* __GDPR__ "searchresultsShown" : { - "count" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "fileCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "count" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "fileCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "options": { "${inline}": [ "${IPatternInfo}" ] }, - "duration": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "useRipgrep": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "duration": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "useRipgrep": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('searchResultsShown', { diff --git a/src/vs/workbench/parts/tasks/common/taskSystem.ts b/src/vs/workbench/parts/tasks/common/taskSystem.ts index 5aabdd39d23..3edda7015f6 100644 --- a/src/vs/workbench/parts/tasks/common/taskSystem.ts +++ b/src/vs/workbench/parts/tasks/common/taskSystem.ts @@ -38,12 +38,12 @@ export class TaskError { /* __GDPR__FRAGMENT__ "TelemetryEvent" : { - "trigger" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "runner": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "taskKind": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "command": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "success": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "exitCode": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "trigger" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "runner": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "taskKind": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "command": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "success": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "exitCode": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface TelemetryEvent { diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 0f10063fe1c..34eb91a1b63 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -1100,7 +1100,7 @@ class TaskService extends EventEmitter implements ITaskService { }; /* __GDPR__ "taskService.customize" : { - "properties" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "properties" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(TaskService.CustomizationTelemetryEventName, event); diff --git a/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts b/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts index 663f6388880..ff447c18678 100644 --- a/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts +++ b/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts @@ -325,8 +325,8 @@ class WelcomePage { a.addEventListener('click', e => { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { @@ -410,8 +410,8 @@ class WelcomePage { private installExtension(extensionSuggestion: ExtensionSuggestion, strings: Strings): void { /* __GDPR__FRAGMENT__ "WelcomePageInstall-1" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(strings.installEvent, { @@ -423,9 +423,9 @@ class WelcomePage { if (installedExtension && installedExtension.globallyEnabled) { /* __GDPR__FRAGMENT__ "WelcomePageInstalled-1" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "outcome": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "outcome": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(strings.installedEvent, { @@ -472,9 +472,9 @@ class WelcomePage { .then(() => { /* __GDPR__FRAGMENT__ "WelcomePageInstalled-2" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "outcome": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "outcome": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(strings.installedEvent, { @@ -487,9 +487,9 @@ class WelcomePage { } else { /* __GDPR__FRAGMENT__ "WelcomePageInstalled-3" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "outcome": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "outcome": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(strings.installedEvent, { @@ -504,10 +504,10 @@ class WelcomePage { }).then(null, err => { /* __GDPR__FRAGMENT__ "WelcomePageInstalled-4" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "outcome": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "error": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "outcome": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "error": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ this.telemetryService.publicLog(strings.installedEvent, { @@ -523,8 +523,8 @@ class WelcomePage { new Action('details', localize('details', "Details"), null, true, () => { /* __GDPR__FRAGMENT__ "WelcomePageDetails-1" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(strings.detailsEvent, { @@ -539,9 +539,9 @@ class WelcomePage { new Action('cancel', localize('cancel', "Cancel"), null, true, () => { /* __GDPR__FRAGMENT__ "WelcomePageInstalled-5" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "outcome": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "outcome": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog(strings.installedEvent, { @@ -556,10 +556,10 @@ class WelcomePage { }).then(null, err => { /* __GDPR__FRAGMENT__ "WelcomePageInstalled-6" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "outcome": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "error": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "outcome": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "error": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ this.telemetryService.publicLog(strings.installedEvent, { diff --git a/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts b/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts index 19e28ae242b..94f97255ff3 100644 --- a/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts +++ b/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts @@ -180,9 +180,9 @@ export class WalkThroughPart extends BaseEditor { let scrollTarget = this.content.querySelector(node.hash); /* __GDPR__ "revealInDocument" : { - "hash" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "broken": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "hash" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "broken": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('revealInDocument', { @@ -218,8 +218,8 @@ export class WalkThroughPart extends BaseEditor { if (uri.scheme === 'http' || uri.scheme === 'https') { /* __GDPR__ "openExternal" : { - "uri" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "uri" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('openExternal', { @@ -356,8 +356,8 @@ export class WalkThroughPart extends BaseEditor { const options = this.getEditorOptions(snippet.textEditorModel.getModeId()); /* __GDPR__FRAGMENT__ "EditorTelemetryData" : { - "target" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "snippet": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "target" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "snippet": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ const telemetryData = { @@ -410,9 +410,9 @@ export class WalkThroughPart extends BaseEditor { this.contentDisposables.push(once(editor.onMouseDown)(() => { /* __GDPR__ "walkThroughSnippetInteraction" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "type": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "snippet": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "snippet": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('walkThroughSnippetInteraction', { @@ -424,9 +424,9 @@ export class WalkThroughPart extends BaseEditor { this.contentDisposables.push(once(editor.onKeyDown)(() => { /* __GDPR__ "walkThroughSnippetInteraction" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "type": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "snippet": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "snippet": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('walkThroughSnippetInteraction', { @@ -438,9 +438,9 @@ export class WalkThroughPart extends BaseEditor { this.contentDisposables.push(once(editor.onDidChangeModelContent)(() => { /* __GDPR__ "walkThroughSnippetInteraction" : { - "from" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "type": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "snippet": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "from" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "snippet": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('walkThroughSnippetInteraction', { diff --git a/src/vs/workbench/parts/welcome/walkThrough/node/walkThroughInput.ts b/src/vs/workbench/parts/welcome/walkThrough/node/walkThroughInput.ts index f3a4610d00f..1b2a25daf69 100644 --- a/src/vs/workbench/parts/welcome/walkThrough/node/walkThroughInput.ts +++ b/src/vs/workbench/parts/welcome/walkThrough/node/walkThroughInput.ts @@ -95,7 +95,7 @@ export class WalkThroughInput extends EditorInput { descriptor['resource'] = telemetryURIDescriptor(this.options.resource); /* __GDPR__FRAGMENT__ "EditorTelemetryDescriptor" : { - "target" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "target" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "resource": { "${inline}": [ "${URIDescriptor}" ] } } */ @@ -173,7 +173,7 @@ export class WalkThroughInput extends EditorInput { this.resolveTime = Date.now(); /* __GDPR__ "resolvingInput" : { - "target" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "target" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('resolvingInput', { @@ -186,11 +186,11 @@ export class WalkThroughInput extends EditorInput { if (this.resolveTime) { /* __GDPR__ "disposingInput" : { - "target" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "timeSpent": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "reason": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "maxTopScroll": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "maxBottomScroll": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "target" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "timeSpent": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "reason": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "maxTopScroll": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "maxBottomScroll": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('disposingInput', { diff --git a/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts b/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts index e07f1f8de97..34515dba9b4 100644 --- a/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts +++ b/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts @@ -113,8 +113,8 @@ export class ContextMenuService implements IContextMenuService { private runAction(actionRunner: IActionRunner, actionToRun: IAction, delegate: IContextMenuDelegate, event: IEvent): void { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: actionToRun.id, from: 'contextMenu' }); diff --git a/src/vs/workbench/services/extensions/electron-browser/extensionService.ts b/src/vs/workbench/services/extensions/electron-browser/extensionService.ts index 5d6e9ea57fb..af7c9fda003 100644 --- a/src/vs/workbench/services/extensions/electron-browser/extensionService.ts +++ b/src/vs/workbench/services/extensions/electron-browser/extensionService.ts @@ -302,8 +302,8 @@ export class ExtensionService implements IExtensionService { /* __GDPR__ "extensionsScanned" : { - "totalCount" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "disabledCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "totalCount" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "disabledCount": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ this._telemetryService.publicLog('extensionsScanned', { @@ -355,10 +355,10 @@ export class ExtensionService implements IExtensionService { const { type, extensionId, extensionPointId, message } = msg; /* __GDPR__ "extensionsMessage" : { - "type" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "extensionId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "extensionPointId": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "message": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "type" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "extensionId": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "extensionPointId": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "message": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ this._telemetryService.publicLog('extensionsMessage', { diff --git a/src/vs/workbench/services/keybinding/electron-browser/keybindingService.ts b/src/vs/workbench/services/keybinding/electron-browser/keybindingService.ts index 69d92d5f6ac..57bf0f221fa 100644 --- a/src/vs/workbench/services/keybinding/electron-browser/keybindingService.ts +++ b/src/vs/workbench/services/keybinding/electron-browser/keybindingService.ts @@ -412,7 +412,7 @@ export class WorkbenchKeybindingService extends AbstractKeybindingService { /* __GDPR__ "customKeybindingsChanged" : { - "keyCount" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "keyCount" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('customKeybindingsChanged', { diff --git a/src/vs/workbench/services/message/browser/messageList.ts b/src/vs/workbench/services/message/browser/messageList.ts index 85e38aea40e..67b2e2623a5 100644 --- a/src/vs/workbench/services/message/browser/messageList.ts +++ b/src/vs/workbench/services/message/browser/messageList.ts @@ -306,8 +306,8 @@ export class MessageList { /* __GDPR__ "workbenchActionExecuted" : { - "id" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "from": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workbenchActionExecuted', { id: action.id, from: 'message' }); diff --git a/src/vs/workbench/services/telemetry/common/workspaceStats.ts b/src/vs/workbench/services/telemetry/common/workspaceStats.ts index 7b496c73986..cd737abb95c 100644 --- a/src/vs/workbench/services/telemetry/common/workspaceStats.ts +++ b/src/vs/workbench/services/telemetry/common/workspaceStats.ts @@ -146,30 +146,30 @@ export class WorkspaceStats { /* __GDPR__FRAGMENT__ "WorkspaceTags" : { - "workbench.filesToOpen" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "workbench.filesToCreate" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "workbench.filesToDiff" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "workspace.roots" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.empty" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.grunt" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.gulp" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.jake" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.tsconfig" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.jsconfig" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.config.xml" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.vsc.extension" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.ASP5" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.sln" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.unity" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.npm" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.bower" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.yeoman.code.ext" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.cordova.high" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.cordova.low" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.xamarin.android" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.xamarin.ios" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.android.cpp" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" }, - "workspace.reactNative" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" } + "workbench.filesToOpen" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "workbench.filesToCreate" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "workbench.filesToDiff" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "workspace.roots" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.empty" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.grunt" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.gulp" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.jake" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.tsconfig" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.jsconfig" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.config.xml" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.vsc.extension" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.ASP5" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.sln" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.unity" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.npm" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.bower" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.yeoman.code.ext" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.cordova.high" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.cordova.low" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.xamarin.android" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.xamarin.ios" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.android.cpp" : { "classification": "CustomerContent", "purpose": "FeatureInsight" }, + "workspace.reactNative" : { "classification": "CustomerContent", "purpose": "FeatureInsight" } } */ private getWorkspaceTags(configuration: IWindowConfiguration): TPromise { @@ -298,7 +298,7 @@ export class WorkspaceStats { set.forEach(item => list.push(item)); /* __GDPR__ "workspace.remotes" : { - "domains" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" } + "domains" : { "classification": "CustomerContent", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workspace.remotes', { domains: list.sort() }); @@ -316,7 +316,7 @@ export class WorkspaceStats { })).then(hashedRemotes => { /* __GDPR__ "workspace.hashedRemotes" : { - "remotes" : { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" } + "remotes" : { "classification": "CustomerContent", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('workspace.hashedRemotes', { remotes: hashedRemotes }); @@ -325,7 +325,7 @@ export class WorkspaceStats { /* __GDPR__FRAGMENT__ "AzureTags" : { - "node" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "node" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ private reportAzureNode(workspaceUris: URI[], tags: Tags): TPromise { @@ -351,7 +351,7 @@ export class WorkspaceStats { /* __GDPR__FRAGMENT__ "AzureTags" : { - "java" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "java" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ private reportAzureJava(workspaceUris: URI[], tags: Tags): TPromise { diff --git a/src/vs/workbench/services/textfile/common/textFileEditorModel.ts b/src/vs/workbench/services/textfile/common/textFileEditorModel.ts index 9bb53f432a0..2360ed580d5 100644 --- a/src/vs/workbench/services/textfile/common/textFileEditorModel.ts +++ b/src/vs/workbench/services/textfile/common/textFileEditorModel.ts @@ -369,9 +369,9 @@ export class TextFileEditorModel extends BaseTextEditorModel implements ITextFil // Telemetry /* __GDPR__ "fileGet" : { - "mimeType" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "ext": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "path": { "endPoint": "none", "classification": "CustomerContent", "purpose": "FeatureInsight" } + "mimeType" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "ext": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "path": { "classification": "CustomerContent", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('fileGet', { mimeType: guessMimeTypes(this.resource.fsPath).join(', '), ext: paths.extname(this.resource.fsPath), path: anonymize(this.resource.fsPath) }); @@ -712,8 +712,8 @@ export class TextFileEditorModel extends BaseTextEditorModel implements ITextFil } else { /* __GDPR__ "filePUT" : { - "mimeType" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "ext": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "mimeType" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "ext": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('filePUT', { mimeType: guessMimeTypes(this.resource.fsPath).join(', '), ext: paths.extname(this.lastResolvedDiskStat.resource.fsPath) }); diff --git a/src/vs/workbench/services/textfile/common/textFileService.ts b/src/vs/workbench/services/textfile/common/textFileService.ts index f7640f6acfd..2461fd37f5f 100644 --- a/src/vs/workbench/services/textfile/common/textFileService.ts +++ b/src/vs/workbench/services/textfile/common/textFileService.ts @@ -220,9 +220,9 @@ export abstract class TextFileService implements ITextFileService { // Telemetry /* __GDPR__ "hotExit:triggered" : { - "reason" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "windowCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "fileCount": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "reason" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "windowCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "fileCount": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('hotExit:triggered', { reason, windowCount, fileCount: dirtyToBackup.length }); diff --git a/src/vs/workbench/services/textfile/common/textfiles.ts b/src/vs/workbench/services/textfile/common/textfiles.ts index 1240afbfa83..13427c46539 100644 --- a/src/vs/workbench/services/textfile/common/textfiles.ts +++ b/src/vs/workbench/services/textfile/common/textfiles.ts @@ -102,9 +102,9 @@ export interface IResult { /* __GDPR__FRAGMENT__ "IAutoSaveConfiguration" : { - "autoSaveDelay" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "autoSaveFocusChange": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "autoSaveApplicationChange": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "autoSaveDelay" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "autoSaveFocusChange": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "autoSaveApplicationChange": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ export interface IAutoSaveConfiguration { diff --git a/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts b/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts index 059834c852f..c027ae8af77 100644 --- a/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts +++ b/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts @@ -644,11 +644,11 @@ export class WorkbenchThemeService implements IWorkbenchThemeService { if (!this.themeExtensionsActivated.get(key)) { /* __GDPR__ "activatePlugin" : { - "id" : { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "name": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, - "isBuiltin": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "publisherDisplayName": { "endPoint": "none", "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, - "themeId": { "endPoint": "none", "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" } + "id" : { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "name": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }, + "isBuiltin": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "publisherDisplayName": { "classification": "PublicPersonalData", "purpose": "FeatureInsight" }, + "themeId": { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" } } */ this.telemetryService.publicLog('activatePlugin', { diff --git a/src/vs/workbench/services/timer/common/timerService.ts b/src/vs/workbench/services/timer/common/timerService.ts index b2b67385553..1d6c5d4f16a 100644 --- a/src/vs/workbench/services/timer/common/timerService.ts +++ b/src/vs/workbench/services/timer/common/timerService.ts @@ -10,10 +10,10 @@ export const ITimerService = createDecorator('timerService'); /* __GDPR__FRAGMENT__ "IMemoryInfo" : { - "workingSetSize" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "peakWorkingSetSize": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "privateBytes": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "sharedBytes": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "workingSetSize" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "peakWorkingSetSize": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "privateBytes": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "sharedBytes": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } */ export interface IMemoryInfo { @@ -25,35 +25,35 @@ export interface IMemoryInfo { /* __GDPR__FRAGMENT__ "IStartupMetrics" : { - "version" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "ellapsed" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedAppReady" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedWindowLoad" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedWindowLoadToRequire" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedExtensions" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedExtensionsReady" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedRequire" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedViewletRestore" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedEditorRestore" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedWorkbench" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "timers.ellapsedTimersToTimersComputed" : { "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" }, - "totalmem" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "version" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "ellapsed" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedAppReady" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedWindowLoad" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedWindowLoadToRequire" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedExtensions" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedExtensionsReady" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedRequire" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedViewletRestore" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedEditorRestore" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedWorkbench" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "timers.ellapsedTimersToTimersComputed" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "platform" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "release" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "arch" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "totalmem" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, "meminfo" : { "${inline}": [ "${IMemoryInfo}" ] }, - "cpus.count" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "cpus.speed" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "cpus.model" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "initialStartup" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, - "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" }, + "cpus.count" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "cpus.speed" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "cpus.model" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "initialStartup" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "hasAccessibilitySupport" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "isVMLikelyhood" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "emptyWorkbench" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, + "loadavg" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }, "${wildcard}": [ { "${prefix}": "timers2.", - "${classification}": { "endPoint": "none", "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } + "${classification}": { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" } } ] }