postio / libraries /nestjs-libraries /src /sentry /initialize.sentry.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 10)
a271c58 verified
Raw
History Blame Contribute Delete
1.3 kB
import * as Sentry from '@sentry/nestjs';
import { nodeProfilingIntegration } from '@sentry/profiling-node';
import { capitalize } from 'lodash';
export const initializeSentry = (appName: string, allowLogs = false) => {
if (!process.env.NEXT_PUBLIC_SENTRY_DSN) {
return null;
}
try {
Sentry.init({
initialScope: {
tags: {
service: appName,
component: 'nestjs',
},
contexts: {
app: {
name: `Postiz ${capitalize(appName)}`,
},
},
},
environment: process.env.NODE_ENV || 'development',
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
spotlight: process.env.SENTRY_SPOTLIGHT === '1',
integrations: [
// Add our Profiling integration
nodeProfilingIntegration(),
Sentry.consoleLoggingIntegration({ levels: ['log', 'info', 'warn', 'error', 'debug', 'assert', 'trace'] }),
Sentry.openAIIntegration({
recordInputs: true,
recordOutputs: true,
}),
],
tracesSampleRate: 1.0,
enableLogs: true,
// Profiling
profileSessionSampleRate: process.env.NODE_ENV === 'development' ? 1.0 : 0.45,
profileLifecycle: 'trace',
});
} catch (err) {
console.log(err);
}
return true;
};