Skip to content

Commit

Permalink
fix(bridge-ui): reduce sample rate (#14051)
Browse files Browse the repository at this point in the history
  • Loading branch information
jscriptcoder committed Jun 25, 2023
1 parent 911c701 commit e836d7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bridge-ui/src/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export function setupSentry(dsn?: string) {

integrations: [new Sentry.BrowserTracing()],

sampleRate: isProd ? 0.2 : 1.0,
tracesSampleRate: isProd ? 0.2 : 1.0,
sampleRate: isProd ? 0.1 : 1.0,
tracesSampleRate: isProd ? 0.1 : 1.0,
maxBreadcrumbs: 50,

beforeSend(event, hint) {
Expand Down

0 comments on commit e836d7d

Please sign in to comment.