From 795497d00e8210b53c266d82af881c16c81b63f8 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Wed, 17 Nov 2021 19:29:52 +0200 Subject: [PATCH] lower Sentry tracesSampleRate --- sentry.client.config.js | 2 +- sentry.server.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sentry.client.config.js b/sentry.client.config.js index d3c5e27..1aad3b7 100644 --- a/sentry.client.config.js +++ b/sentry.client.config.js @@ -11,7 +11,7 @@ Sentry.init({ dsn: SENTRY_DSN, environment: ENV, // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 1.0, + tracesSampleRate: 0.1, // ... // Note: if you want to override the automatic release value, do not set a // `release` value here - use the environment variable `SENTRY_RELEASE`, so diff --git a/sentry.server.config.js b/sentry.server.config.js index 5d46ddc..3777186 100644 --- a/sentry.server.config.js +++ b/sentry.server.config.js @@ -11,7 +11,7 @@ Sentry.init({ dsn: SENTRY_DSN, environment: ENV, // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 1.0, + tracesSampleRate: 0.1, // ... // Note: if you want to override the automatic release value, do not set a // `release` value here - use the environment variable `SENTRY_RELEASE`, so