feat: change profiling

This commit is contained in:
Nevo David 2025-07-30 20:03:54 +07:00
parent aac6fc0fd4
commit 24e64fd97d
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ export const initializeSentry = () => {
nodeProfilingIntegration(),
],
tracesSampleRate: process.env.NODE_ENV === 'development' ? 1.0 : 0.3,
profilesSampleRate: 1.0,
profilesSampleRate: process.env.NODE_ENV === 'development' ? 1.0 : 0.1,
});
return true;