diff --git a/sentry.server.config.ts b/sentry.server.config.ts index c7c85de2..d6845af8 100644 --- a/sentry.server.config.ts +++ b/sentry.server.config.ts @@ -5,13 +5,12 @@ import * as Sentry from "@sentry/nextjs"; Sentry.init({ - dsn: "https://c96c9319e5654102b38b750ecba85712@sentry.fabrique.social.gouv.fr/101", - environment: "otel_" + (process.env.ENV || "dev"), + dsn: "https://6d774872e77ac5020b94b6284a2e7514@sentry2.fabrique.social.gouv.fr/7", + environment: process.env.ENV || "dev", // Adjust this value in production, or use tracesSampler for greater control tracesSampleRate: 0.1, // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, - instrumenter: "otel", });