From 3ebcd02409839d6489aeefb10128a68d2bbac9fa Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Sat, 22 Mar 2025 19:38:11 +0000 Subject: [PATCH] complete --- .../telemetry/telemetry.service.ts | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/apps/server/src/integrations/telemetry/telemetry.service.ts b/apps/server/src/integrations/telemetry/telemetry.service.ts index 63792c4d..7e351589 100644 --- a/apps/server/src/integrations/telemetry/telemetry.service.ts +++ b/apps/server/src/integrations/telemetry/telemetry.service.ts @@ -10,6 +10,8 @@ const packageJson = require('./../../../package.json'); @Injectable() export class TelemetryService { + private readonly ENDPOINT_URL = 'https://tel.docmost.com/api/event'; + constructor( private readonly environmentService: EnvironmentService, @InjectKysely() private readonly db: KyselyDB, @@ -21,16 +23,16 @@ export class TelemetryService { name: 'telemetry', }) async sendTelemetry() { - if ( - this.environmentService.isDisableTelemetry() || - this.environmentService.isCloud() || - this.environmentService.getNodeEnv() !== 'production' - ) { - this.schedulerRegistry.deleteCronJob('telemetry'); - return; - } - try { + if ( + this.environmentService.isDisableTelemetry() || + this.environmentService.isCloud() || + this.environmentService.getNodeEnv() !== 'production' + ) { + this.schedulerRegistry.deleteCronJob('telemetry'); + return; + } + const workspace = await this.workspaceRepo.findFirst(); if (!workspace) { return; @@ -72,9 +74,7 @@ export class TelemetryService { workspaceCount, }; - const telemetryUrl = 'https://event.docmost.com/api/event'; - - const response = await fetch(telemetryUrl, { + await fetch(this.ENDPOINT_URL, { method: 'POST', headers: { 'User-Agent': 'docmost:' + data.version, @@ -82,7 +82,6 @@ export class TelemetryService { }, body: JSON.stringify(data), }); - console.log(response.json()); } catch (err) { /* empty */ }