diff --git a/app.ts b/app.ts index 6151bbaff..2a4071599 100644 --- a/app.ts +++ b/app.ts @@ -31,9 +31,9 @@ async function startServer() { enabled: env.NODE_ENV === 'production', ignoreErrors: [/.*error: Provide.*chain.*param/], integrations: [ - new Sentry.Integrations.Apollo(), - new Sentry.Integrations.GraphQL(), - new Sentry.Integrations.Prisma({ client: prisma }), + // new Sentry.Integrations.Apollo(), + // new Sentry.Integrations.GraphQL(), + // new Sentry.Integrations.Prisma({ client: prisma }), new Sentry.Integrations.Express({ app }), new Sentry.Integrations.Http({ tracing: true }), new ProfilingIntegration(), diff --git a/worker/worker.ts b/worker/worker.ts index 375a8095a..9ef3cf5bb 100644 --- a/worker/worker.ts +++ b/worker/worker.ts @@ -13,10 +13,10 @@ export async function startWorker() { environment: `multichain-worker-${env.DEPLOYMENT_ENV}`, enabled: env.NODE_ENV === 'production', integrations: [ - new Sentry.Integrations.Apollo(), - new Sentry.Integrations.GraphQL(), - new Sentry.Integrations.Prisma({ client: prisma }), - new Sentry.Integrations.Express({ app }), + // new Sentry.Integrations.Apollo(), + // new Sentry.Integrations.GraphQL(), + // new Sentry.Integrations.Prisma({ client: prisma }), + // new Sentry.Integrations.Express({ app }), new Sentry.Integrations.Http({ tracing: true }), new ProfilingIntegration(), ],