From 9e6f786eae80ecafa76badf95809c82b037bdc75 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Wed, 1 Nov 2023 18:04:34 +0100 Subject: [PATCH] server: deactivate sentry sample rate --- www/sentry.client.config.ts | 2 +- www/sentry.edge.config.ts | 2 +- www/sentry.server.config.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/www/sentry.client.config.ts b/www/sentry.client.config.ts index a64f4ab2..0fd74e20 100644 --- a/www/sentry.client.config.ts +++ b/www/sentry.client.config.ts @@ -8,7 +8,7 @@ Sentry.init({ dsn: "https://a6fb679d6e99e303bb2ea0e2d68bfe46@o1376440.ingest.sentry.io/4505634666577920", // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 1, + tracesSampleRate: 0, // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, diff --git a/www/sentry.edge.config.ts b/www/sentry.edge.config.ts index c4a941da..92c2b174 100644 --- a/www/sentry.edge.config.ts +++ b/www/sentry.edge.config.ts @@ -9,7 +9,7 @@ Sentry.init({ dsn: "https://a6fb679d6e99e303bb2ea0e2d68bfe46@o1376440.ingest.sentry.io/4505634666577920", // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 1, + tracesSampleRate: 0, // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, diff --git a/www/sentry.server.config.ts b/www/sentry.server.config.ts index 179f0a99..7d24e518 100644 --- a/www/sentry.server.config.ts +++ b/www/sentry.server.config.ts @@ -8,7 +8,7 @@ Sentry.init({ dsn: "https://a6fb679d6e99e303bb2ea0e2d68bfe46@o1376440.ingest.sentry.io/4505634666577920", // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 1, + tracesSampleRate: 0, // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false,