Consume proposed telemetry API (#165862)

* Consume proposed telemetry API

* Update webpack
This commit is contained in:
Logan Ramos
2022-11-08 21:58:28 -05:00
committed by GitHub
parent fd5edb9906
commit bf1697d98c
28 changed files with 3988 additions and 337 deletions

View File

@@ -20,7 +20,7 @@ let client: BaseLanguageClient | undefined;
// this method is called when vs code is activated
export async function activate(context: ExtensionContext) {
const clientPackageJSON = await getPackageInfo(context);
telemetry = new TelemetryReporter(clientPackageJSON.name, clientPackageJSON.version, clientPackageJSON.aiKey);
telemetry = new TelemetryReporter(clientPackageJSON.aiKey);
const outputChannel = window.createOutputChannel(languageServerDescription);