From c8dadfd7a31f62a4bacf5d9829bdf30520468777 Mon Sep 17 00:00:00 2001 From: Chris Amico Date: Tue, 23 Jan 2024 10:21:32 -0500 Subject: [PATCH] Sample 25 percent --- src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.js b/src/main.js index 7b5b63455..dcc091d31 100644 --- a/src/main.js +++ b/src/main.js @@ -16,7 +16,7 @@ if (!IS_EMBED && SENTRY_DSN) { // Set tracesSampleRate to 1.0 to capture 100% // of transactions for performance monitoring. // We recommend adjusting this value in production - tracesSampleRate: 0.5, + tracesSampleRate: 0.25, // Set `tracePropagationTargets` to control for which URLs distributed tracing should be enabled tracePropagationTargets: [ @@ -26,7 +26,7 @@ if (!IS_EMBED && SENTRY_DSN) { ], // Capture Replay for 10% of all sessions, - // plus for 100% of sessions with an error + // plus for 50% of sessions with an error replaysSessionSampleRate: 0.1, replaysOnErrorSampleRate: 0.5, });