2022-05-05 01:32:12 +02:00
|
|
|
Add support for telemetry endpoint
|
|
|
|
|
2022-09-09 19:05:30 +02:00
|
|
|
To test:
|
|
|
|
1. Look inside a build of code-server, inside `lib/vscode/vs/server/node/server.main.js`
|
|
|
|
2. Search for a `JSON.stringify` near `TelemetryClient`
|
|
|
|
3. throw in a `console.log()` before it and make sure it logs telemetry data
|
|
|
|
|
2022-05-05 01:32:12 +02:00
|
|
|
Index: code-server/lib/vscode/src/vs/server/node/serverServices.ts
|
|
|
|
===================================================================
|
|
|
|
--- code-server.orig/lib/vscode/src/vs/server/node/serverServices.ts
|
|
|
|
+++ code-server/lib/vscode/src/vs/server/node/serverServices.ts
|
2022-08-17 03:26:19 +02:00
|
|
|
@@ -71,6 +71,7 @@ import { IExtensionsScannerService } fro
|
2022-06-21 23:51:46 +02:00
|
|
|
import { ExtensionsScannerService } from 'vs/server/node/extensionsScannerService';
|
2022-08-17 03:26:19 +02:00
|
|
|
import { ExtensionsProfileScannerService, IExtensionsProfileScannerService } from 'vs/platform/extensionManagement/common/extensionsProfileScannerService';
|
|
|
|
import { IUserDataProfilesService, UserDataProfilesService } from 'vs/platform/userDataProfile/common/userDataProfile';
|
2022-05-05 01:32:12 +02:00
|
|
|
+import { TelemetryClient } from "vs/server/node/telemetryClient";
|
2022-06-21 23:51:46 +02:00
|
|
|
import { NullPolicyService } from 'vs/platform/policy/common/policy';
|
2022-08-17 03:26:19 +02:00
|
|
|
import { OneDataSystemAppender } from 'vs/platform/telemetry/node/1dsAppender';
|
2022-05-05 01:32:12 +02:00
|
|
|
|
2022-08-17 03:26:19 +02:00
|
|
|
@@ -133,10 +134,13 @@ export async function setupServerService
|
2022-05-05 01:32:12 +02:00
|
|
|
const machineId = await getMachineId();
|
2022-08-17 03:26:19 +02:00
|
|
|
const isInternal = isInternalTelemetry(productService, configurationService);
|
2022-05-05 01:32:12 +02:00
|
|
|
if (supportsTelemetry(productService, environmentService)) {
|
2022-08-17 03:26:19 +02:00
|
|
|
- if (productService.aiConfig && productService.aiConfig.ariaKey) {
|
2022-05-05 01:32:12 +02:00
|
|
|
+ const telemetryEndpoint = process.env.CS_TELEMETRY_URL || "https://v1.telemetry.coder.com/track";
|
|
|
|
+ if (telemetryEndpoint) {
|
2022-08-17 03:26:19 +02:00
|
|
|
+ oneDsAppender = new OneDataSystemAppender(false, eventPrefix, null, () => new TelemetryClient(telemetryEndpoint));
|
|
|
|
+ } else if (productService.aiConfig && productService.aiConfig.ariaKey) {
|
|
|
|
oneDsAppender = new OneDataSystemAppender(isInternal, eventPrefix, null, productService.aiConfig.ariaKey);
|
|
|
|
- disposables.add(toDisposable(() => oneDsAppender?.flush())); // Ensure the AI appender is disposed so that it flushes remaining data
|
2022-05-05 01:32:12 +02:00
|
|
|
}
|
2022-08-17 03:26:19 +02:00
|
|
|
+ disposables.add(toDisposable(() => oneDsAppender?.flush())); // Ensure the AI appender is disposed so that it flushes remaining data
|
|
|
|
|
|
|
|
const config: ITelemetryServiceConfig = {
|
|
|
|
appenders: [oneDsAppender],
|
2022-05-05 01:32:12 +02:00
|
|
|
Index: code-server/lib/vscode/src/vs/server/node/telemetryClient.ts
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ code-server/lib/vscode/src/vs/server/node/telemetryClient.ts
|
2022-08-17 03:26:19 +02:00
|
|
|
@@ -0,0 +1,49 @@
|
|
|
|
+import { AppInsightsCore, IExtendedTelemetryItem, ITelemetryItem } from '@microsoft/1ds-core-js';
|
2022-05-05 01:32:12 +02:00
|
|
|
+import * as https from 'https';
|
|
|
|
+import * as http from 'http';
|
|
|
|
+import * as os from 'os';
|
|
|
|
+
|
2022-08-17 03:26:19 +02:00
|
|
|
+export class TelemetryClient extends AppInsightsCore {
|
2022-05-05 01:32:12 +02:00
|
|
|
+ public constructor(private readonly endpoint: string) {
|
2022-08-17 03:26:19 +02:00
|
|
|
+ super();
|
2022-05-05 01:32:12 +02:00
|
|
|
+ }
|
|
|
|
+
|
2022-08-17 03:26:19 +02:00
|
|
|
+ public override track(item: IExtendedTelemetryItem | ITelemetryItem): void {
|
|
|
|
+ const options = item.baseData || {}
|
2022-05-05 01:32:12 +02:00
|
|
|
+ if (!options.properties) {
|
|
|
|
+ options.properties = {};
|
|
|
|
+ }
|
|
|
|
+ if (!options.measurements) {
|
|
|
|
+ options.measurements = {};
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ const cpus = os.cpus();
|
|
|
|
+ options.measurements.cores = cpus.length;
|
|
|
|
+ options.properties['common.cpuModel'] = cpus[0].model;
|
|
|
|
+ } catch (error) {}
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ options.measurements.memoryFree = os.freemem();
|
|
|
|
+ options.measurements.memoryTotal = os.totalmem();
|
|
|
|
+ } catch (error) {}
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ options.properties['common.shell'] = os.userInfo().shell;
|
|
|
|
+ options.properties['common.release'] = os.release();
|
|
|
|
+ options.properties['common.arch'] = os.arch();
|
|
|
|
+ } catch (error) {}
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ const request = (/^http:/.test(this.endpoint) ? http : https).request(this.endpoint, {
|
|
|
|
+ method: 'POST',
|
|
|
|
+ headers: {
|
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+ request.on('error', () => { /* We don't care. */ });
|
|
|
|
+ request.write(JSON.stringify(options));
|
|
|
|
+ request.end();
|
|
|
|
+ } catch (error) {}
|
|
|
|
+ }
|
|
|
|
+}
|
2022-06-21 23:51:46 +02:00
|
|
|
Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts
|
|
|
|
===================================================================
|
|
|
|
--- code-server.orig/lib/vscode/src/vs/server/node/webClientServer.ts
|
|
|
|
+++ code-server/lib/vscode/src/vs/server/node/webClientServer.ts
|
2022-08-17 03:26:19 +02:00
|
|
|
@@ -324,6 +324,7 @@ export class WebClientServer {
|
2022-06-21 23:51:46 +02:00
|
|
|
scope: vscodeBase + '/',
|
|
|
|
path: base + '/_static/out/browser/serviceWorker.js',
|
|
|
|
},
|
|
|
|
+ enableTelemetry: this._productService.enableTelemetry,
|
|
|
|
embedderIdentifier: 'server-distro',
|
|
|
|
extensionsGallery: this._productService.extensionsGallery,
|
|
|
|
},
|