Increase sampleRate for frontend services

Set tracesSampleRate to 1.0 for all environments.
This commit is contained in:
Enno Gelhaus 2025-11-18 15:52:14 +01:00 committed by GitHub
parent 28eed857b2
commit 197957672d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ export const initializeSentryBasic = (environment: string, dsn: string, extensio
sendDefaultPii: true,
...extension,
debug: environment === 'development',
tracesSampleRate: environment === 'development' ? 1.0 : 0.3,
tracesSampleRate: 1.0,
beforeSend(event, hint) {
if (event.exception && event.exception.values) {