Fix Sentry sample rates for production environment
This commit is contained in:
parent
826f803174
commit
df47e9f5ed
|
|
@ -16,8 +16,8 @@ export const initializeSentryClient = (environment: string, dsn: string) =>
|
|||
autoInject: false,
|
||||
}),
|
||||
],
|
||||
replaysSessionSampleRate: environment === 'development' ? 1.0 : 0.5,
|
||||
replaysSessionSampleRate: environment == 1.0,
|
||||
replaysOnErrorSampleRate: 1.0,
|
||||
|
||||
profilesSampleRate: environment === 'development' ? 1.0 : 0.45,
|
||||
profilesSampleRate: environment === 'development' ? 1.0 : 0.75,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue