fix(sentry): decrease tracesSampleRate

This commit is contained in:
Gergő Móricz 2024-08-21 20:51:35 +02:00
parent 55009e51f5
commit 629da74a5c

View File

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