From 44b08084e51c29a72c88309ac41c7e36d5d24629 Mon Sep 17 00:00:00 2001 From: delivan Date: Fri, 6 Jan 2023 16:55:16 +0900 Subject: [PATCH] Change Sentry tracesSampleRate to 0.2 --- 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 82de681..777305f 100644 --- a/sentry.client.config.js +++ b/sentry.client.config.js @@ -10,7 +10,7 @@ Sentry.init({ enabled: !!SENTRY_DSN, dsn: SENTRY_DSN, // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 1.0, + tracesSampleRate: 0.2, // ... // 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 82df7ca..4437b5c 100644 --- a/sentry.server.config.js +++ b/sentry.server.config.js @@ -10,7 +10,7 @@ Sentry.init({ enabled: !!SENTRY_DSN, dsn: SENTRY_DSN, // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 1.0, + tracesSampleRate: 0.2, // ... // Note: if you want to override the automatic release value, do not set a // `release` value here - use the environment variable `SENTRY_RELEASE`, so