Skip to content

Commit

Permalink
refractor: decrease sentry trace sample rate (#47)
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio Nettis <nettisfabio@gmail.com>
  • Loading branch information
fabio-nettis authored Apr 17, 2024
1 parent b624565 commit 367bf77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as Sentry from "@sentry/bun";
import { db } from "utils/database";

export const sentryOptions: Sentry.BunOptions = {
tracesSampleRate: 0.6,
tracesSampleRate: 0.3,
dsn: process.env.SENTRY_DSN,
release: process.env.KOYEB_GIT_SHA,
environment: process.env.NODE_ENV ?? "development",
Expand Down

0 comments on commit 367bf77

Please sign in to comment.