convert error reporting to a DI service

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2024-10-16 11:34:02 +02:00
parent e7a4b0da01
commit d9ecab0672
No known key found for this signature in database
2 changed files with 105 additions and 96 deletions

View file

@ -21,7 +21,7 @@ import { LICENSE_FEATURES, inDevelopment, inTest } from '@/constants';
import * as CrashJournal from '@/crash-journal'; import * as CrashJournal from '@/crash-journal';
import * as Db from '@/db'; import * as Db from '@/db';
import { getDataDeduplicationService } from '@/deduplication'; import { getDataDeduplicationService } from '@/deduplication';
import { initErrorHandling } from '@/error-reporting'; import { ErrorReporting } from '@/error-reporting';
import { MessageEventBus } from '@/eventbus/message-event-bus/message-event-bus'; import { MessageEventBus } from '@/eventbus/message-event-bus/message-event-bus';
import { TelemetryEventRelay } from '@/events/relays/telemetry.event-relay'; import { TelemetryEventRelay } from '@/events/relays/telemetry.event-relay';
import { initExpressionEvaluator } from '@/expression-evaluator'; import { initExpressionEvaluator } from '@/expression-evaluator';
@ -61,7 +61,7 @@ export abstract class BaseCommand extends Command {
protected needsCommunityPackages = false; protected needsCommunityPackages = false;
async init(): Promise<void> { async init(): Promise<void> {
await initErrorHandling(); await Container.get(ErrorReporting).init();
initExpressionEvaluator(); initExpressionEvaluator();
process.once('SIGTERM', this.onTerminationSignal('SIGTERM')); process.once('SIGTERM', this.onTerminationSignal('SIGTERM'));

View file

@ -5,20 +5,27 @@ import { AxiosError } from 'axios';
import { createHash } from 'crypto'; import { createHash } from 'crypto';
import { InstanceSettings } from 'n8n-core'; import { InstanceSettings } from 'n8n-core';
import { ErrorReporterProxy, ApplicationError } from 'n8n-workflow'; import { ErrorReporterProxy, ApplicationError } from 'n8n-workflow';
import Container from 'typedi'; import { Service } from 'typedi';
let initialized = false; @Service()
export class ErrorReporting {
private initialized = false;
export const initErrorHandling = async () => { constructor(
if (initialized) return; private readonly globalConfig: GlobalConfig,
private readonly instanceSettings: InstanceSettings,
) {}
async init() {
if (this.initialized) return;
process.on('uncaughtException', (error) => { process.on('uncaughtException', (error) => {
ErrorReporterProxy.error(error); ErrorReporterProxy.error(error);
}); });
const dsn = Container.get(GlobalConfig).sentry.backendDsn; const dsn = this.globalConfig.sentry.backendDsn;
if (!dsn) { if (!dsn) {
initialized = true; this.initialized = true;
return; return;
} }
@ -32,7 +39,6 @@ export const initErrorHandling = async () => {
} = process.env; } = process.env;
const { init, captureException, setTag } = await import('@sentry/node'); const { init, captureException, setTag } = await import('@sentry/node');
const { RewriteFrames } = await import('@sentry/integrations'); const { RewriteFrames } = await import('@sentry/integrations');
const { Integrations } = await import('@sentry/node'); const { Integrations } = await import('@sentry/node');
@ -73,7 +79,9 @@ export const initErrorHandling = async () => {
if ( if (
originalException instanceof QueryFailedError && originalException instanceof QueryFailedError &&
['SQLITE_FULL', 'SQLITE_IOERR'].some((errMsg) => originalException.message.includes(errMsg)) ['SQLITE_FULL', 'SQLITE_IOERR'].some((errMsg) =>
originalException.message.includes(errMsg),
)
) { ) {
return null; return null;
} }
@ -96,11 +104,12 @@ export const initErrorHandling = async () => {
}, },
}); });
setTag('server_type', Container.get(InstanceSettings).instanceType); setTag('server_type', this.instanceSettings.instanceType);
ErrorReporterProxy.init({ ErrorReporterProxy.init({
report: (error, options) => captureException(error, options), report: (error, options) => captureException(error, options),
}); });
initialized = true; this.initialized = true;
}; }
}