fix(sentry): decrease tracesSampleRate

This commit is contained in:
Gergő Móricz 2024-08-21 20:51:35 +02:00
parent 55009e51f5
commit 629da74a5c
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ if (process.env.SENTRY_DSN) {
integrations: [
nodeProfilingIntegration(),
],
tracesSampleRate: 1.0,
profilesSampleRate: 0.045,
tracesSampleRate: 0.045,
profilesSampleRate: 1.0,
serverName: process.env.FLY_MACHINE_ID,
});
}