From 2cc8b3c389502b968aa14364c5a5e40accb8b028 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Wed, 11 Nov 2020 01:28:48 +0100 Subject: Reduce trace sampling rate This change reduces the trace sampling rate of the Sentry SDK to prevent reaching the limits of the free Sentry subscription. --- frontend/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/src') diff --git a/frontend/src/index.js b/frontend/src/index.js index fe119dfb..3517147e 100644 --- a/frontend/src/index.js +++ b/frontend/src/index.js @@ -17,7 +17,7 @@ setupSocketConnection(() => { environment: process.env.NODE_ENV, dsn: process.env.REACT_APP_SENTRY_DSN, integrations: [new Integrations.BrowserTracing()], - tracesSampleRate: 0.5, + tracesSampleRate: 0.1, }) } -- cgit v1.2.3