Sentry: decrease tracesSampleRate to 0.2

This commit is contained in:
Alex Gleason
2023-12-10 17:55:07 -06:00
parent a32b0e7066
commit ff278487e8

View File

@@ -6,6 +6,6 @@ if (Conf.sentryDsn) {
console.log('Sentry enabled');
Sentry.init({
dsn: Conf.sentryDsn,
tracesSampleRate: 1.0,
tracesSampleRate: .2,
});
}