mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-09 08:15:05 +01:00
omit endPoint where it defaults to none
This commit is contained in:
@@ -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 });
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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.
|
||||
|
||||
Vendored
+10
-10
@@ -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 {
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -295,7 +295,7 @@ export class CodeApplication {
|
||||
const channel = getDelayedChannel<ITelemetryAppenderChannel>(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
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -730,7 +730,7 @@ export class SuggestWidget implements IContentWidget, IDelegate<ICompletionItem>
|
||||
stats['wasAutomaticallyTriggered'] = !!isAuto;
|
||||
/* __GDPR__
|
||||
"suggestWidget" : {
|
||||
"wasAutomaticallyTriggered" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" },
|
||||
"wasAutomaticallyTriggered" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
|
||||
"${include}": [
|
||||
"${ICompletionStats}",
|
||||
"${EditorTelemetryData}"
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 && (<any>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 && (<any>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<any>[] = [];
|
||||
// __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') {
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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" }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -389,15 +389,15 @@ function loadCommonJSModule<T>(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" }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -311,8 +311,8 @@ export abstract class CompositePart<T extends Composite> 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 });
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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}" ] }
|
||||
}
|
||||
*/
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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: {
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -70,8 +70,8 @@ export class KeymapExtensions implements IWorkbenchContribution {
|
||||
private promptForDisablingOtherKeymaps(newKeymap: IExtensionStatus, oldKeymaps: IExtensionStatus[]): TPromise<void> {
|
||||
/* __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', {
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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] });
|
||||
|
||||
@@ -225,7 +225,7 @@ export class PreferencesService extends Disposable implements IPreferencesServic
|
||||
openGlobalKeybindingSettings(textual: boolean): TPromise<void> {
|
||||
/* __GDPR__
|
||||
"openKeybindings" : {
|
||||
"textual" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }
|
||||
"textual" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
|
||||
}
|
||||
*/
|
||||
this.telemetryService.publicLog('openKeybindings', { textual });
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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}"
|
||||
]
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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, {
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -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' });
|
||||
|
||||
@@ -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<Tags> {
|
||||
@@ -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<Tags> {
|
||||
@@ -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<Tags> {
|
||||
|
||||
@@ -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) });
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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', {
|
||||
|
||||
@@ -10,10 +10,10 @@ export const ITimerService = createDecorator<ITimerService>('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" }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user