fix(sentry): adjust profiles sample rate to be even lower

This commit is contained in:
Gergő Móricz 2024-08-21 20:21:16 +02:00
parent 9579f03c4b
commit ac9783ed2f
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ if (process.env.SENTRY_DSN) {
nodeProfilingIntegration(),
],
tracesSampleRate: 1.0,
profilesSampleRate: 0.25,
profilesSampleRate: 0.045,
serverName: process.env.FLY_MACHINE_ID,
});
}