Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/src/insights.ts

60 lines
1.4 KiB
TypeScript
Raw Normal View History

import * as https from "https";
import * as os from "os";
2019-07-16 21:57:02 +02:00
import * as appInsights from "applicationinsights";
export class TelemetryClient implements appInsights.TelemetryClient {
public config: any = {};
public channel = {
setUseDiskRetryCaching: (): void => undefined,
};
2019-07-16 21:57:02 +02:00
public trackEvent(options: appInsights.EventTelemetry): void {
if (!options.properties) {
options.properties = {};
}
if (!options.measurements) {
options.measurements = {};
}
try {
const cpus = os.cpus();
2019-07-16 21:57:02 +02:00
options.measurements.cores = cpus.length;
options.properties["common.cpuModel"] = cpus[0].model;
} catch (error) {}
try {
2019-07-16 21:57:02 +02:00
options.measurements.memoryFree = os.freemem();
options.measurements.memoryTotal = os.totalmem();
} catch (error) {}
try {
2019-07-16 21:57:02 +02:00
options.properties["common.shell"] = os.userInfo().shell;
options.properties["common.release"] = os.release();
options.properties["common.arch"] = os.arch();
} catch (error) {}
try {
const request = https.request({
host: "v1.telemetry.coder.com",
port: 443,
path: "/track",
method: "POST",
headers: {
"Content-Type": "application/json",
},
});
2019-07-16 21:57:02 +02:00
request.on("error", () => { /* We don't care. */ });
request.write(JSON.stringify(options));
request.end();
2019-07-16 21:57:02 +02:00
} catch (error) {}
}
2019-07-16 21:57:02 +02:00
public flush(options: appInsights.FlushOptions): void {
if (options.callback) {
options.callback("");
}
}
}