Adjust profilesSampleRate for production environment

This commit is contained in:
Enno Gelhaus 2025-09-18 20:29:05 +02:00 committed by GitHub
parent 9a1d85321e
commit 6b4fa0763d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -19,5 +19,5 @@ export const initializeSentryClient = (environment: string, dsn: string) =>
replaysSessionSampleRate: environment === 'development' ? 1.0 : 0.5,
replaysOnErrorSampleRate: 1.0,
profilesSampleRate: environment === 'development' ? 1.0 : 0.2,
profilesSampleRate: environment === 'development' ? 1.0 : 0.45,
});