From b8c9da0591c9d3cae43c6070f051fd93d5427dd6 Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Fri, 31 May 2024 10:23:21 -0700 Subject: [PATCH] chore: updating sentry trace sample rate --- app/sentry.client.config.js | 2 +- app/sentry.server.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/sentry.client.config.js b/app/sentry.client.config.js index 8298f73b65..8b59ac10cc 100644 --- a/app/sentry.client.config.js +++ b/app/sentry.client.config.js @@ -16,5 +16,5 @@ Sentry.init({ dsn: SENTRY_DSN, environment: SENTRY_ENVIRONMENT, release: SENTRY_RELEASE, - tracesSampleRate: 1.0, + tracesSampleRate: 0.05, }); diff --git a/app/sentry.server.config.js b/app/sentry.server.config.js index 71c3e50d57..dd96407738 100644 --- a/app/sentry.server.config.js +++ b/app/sentry.server.config.js @@ -16,5 +16,5 @@ Sentry.init({ dsn: SENTRY_DSN, environment: SENTRY_ENVIRONMENT, release: SENTRY_RELEASE, - tracesSampleRate: 1.0, + tracesSampleRate: 0.05, });