Added Sentry prisma integration

This commit is contained in:
Leon Meier 2023-05-15 22:57:00 +02:00
parent 0c7c294823
commit d51b063918

View File

@ -54,13 +54,16 @@ Sentry.init({
// enable HTTP calls tracing
new Sentry.Integrations.Http({ tracing: true }),
// enable Express.js middleware tracing
new Tracing.Integrations.Express({ app })
new Tracing.Integrations.Express({ app }),
// @ts-ignore
new Sentry.Integrations.Prisma({ prisma })
],
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
// We recommend adjusting this value in production
tracesSampleRate: 1.0
tracesSampleRate: config.global.debug ? 1.0 : 0.5,
environment: config.global.debug ? 'development' : 'production'
});
// RequestHandler creates a separate execution context using domains, so that every