From 0b5ca3666e3207609d35ebc3b7a4113e4e07e9e8 Mon Sep 17 00:00:00 2001 From: Nikolas Komonen <118216176+nkomonen-amazon@users.noreply.github.com> Date: Wed, 1 Nov 2023 11:50:48 -0400 Subject: [PATCH] vscode: add "source" field to executeCommand metric (#607) When a vscode command is executed it can be executed from different places. The 'source' field will help to identify what caused the command to execute. Signed-off-by: nkomonen --- telemetry/definitions/vscodeDefinitions.json | 1 + 1 file changed, 1 insertion(+) diff --git a/telemetry/definitions/vscodeDefinitions.json b/telemetry/definitions/vscodeDefinitions.json index 62e3c376..ba9ca106 100644 --- a/telemetry/definitions/vscodeDefinitions.json +++ b/telemetry/definitions/vscodeDefinitions.json @@ -35,6 +35,7 @@ "passive": true, "metadata": [ { "type": "command" }, + { "type": "source" }, { "type": "debounceCount" }, { "type": "duration" }, { "type": "result" },