summaryrefslogtreecommitdiff
path: root/frontend/src/index.js
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-11-11 01:28:48 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-11-11 01:28:48 +0100
commit2cc8b3c389502b968aa14364c5a5e40accb8b028 (patch)
treec47b8eff85714498f3ddddc55f31abd4c2ca1476 /frontend/src/index.js
parente1716ee419c218f879c046917eaeb1e566230b0e (diff)
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.
Diffstat (limited to 'frontend/src/index.js')
-rw-r--r--frontend/src/index.js2
1 files changed, 1 insertions, 1 deletions
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,
})
}