revert sentry (#808)

* revert sentry
* remove sentry env
This commit is contained in:
Philip Okugbe
2025-02-27 15:58:32 +00:00
committed by GitHub
parent 3cfb17bb62
commit 72f64e7b10
8 changed files with 3 additions and 731 deletions

View File

@ -1,12 +0,0 @@
import * as Sentry from '@sentry/nestjs';
import { nodeProfilingIntegration } from '@sentry/profiling-node';
import { envPath } from '../helpers';
import * as dotenv from 'dotenv';
dotenv.config({ path: envPath });
Sentry.init({
dsn: process.env.SENTRY_DSN,
integrations: [nodeProfilingIntegration()],
tracesSampleRate: 1.0,
profilesSampleRate: 1.0,
});