From 03c88d8f1e131bf5080e1285888e52bf127cac23 Mon Sep 17 00:00:00 2001 From: chrmarti Date: Tue, 7 Mar 2017 10:39:21 -0800 Subject: [PATCH] Rename common.machineId in main process (#22168) --- src/vs/platform/telemetry/node/commonProperties.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/platform/telemetry/node/commonProperties.ts b/src/vs/platform/telemetry/node/commonProperties.ts index 2c42f58c64c..731ee19b0ea 100644 --- a/src/vs/platform/telemetry/node/commonProperties.ts +++ b/src/vs/platform/telemetry/node/commonProperties.ts @@ -17,7 +17,7 @@ export function resolveCommonProperties(commit: string, version: string): TPromi result['version'] = version; result['common.osVersion'] = os.release(); result['common.platform'] = Platform.Platform[Platform.platform]; - const promise = getStableMachineId().then(value => result['common.machineId'] = value); + const promise = getStableMachineId().then(value => result['common.mainProcess.machineId'] = value); // dynamic properties which value differs on each call let seq = 0; -- GitLab