Skip to content

Commit

Permalink
Add field to activation telemetry for web-based Codespaces (#6609)
Browse files Browse the repository at this point in the history
  • Loading branch information
Colengms authored and sean-mcmanus committed Dec 3, 2020
1 parent 89fd6a9 commit 28f6dd6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Extension/src/LanguageServer/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,9 @@ function sendActivationTelemetry(): void {
}
machineIdPersistentState.Value = vscode.env.machineId;
}
if (vscode.env.uiKind === vscode.UIKind.Web) {
activateEvent["WebUI"] = "1";
}
telemetry.logLanguageServerEvent("Activate", activateEvent);
}

Expand Down

0 comments on commit 28f6dd6

Please sign in to comment.