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
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

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