Skip to content

Commit

Permalink
chore: lower sentry transaction sample rate #trivial (#11073)
Browse files Browse the repository at this point in the history
lower sentry transaction sample rate
  • Loading branch information
brainbicycle authored Nov 7, 2024
1 parent 20830b3 commit 61c9649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/system/errorReporting/setupSentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function setupSentry(props: SetupSentryProps = { debug: false }) {
autoSessionTracking: true,
enableWatchdogTerminationTracking: false,
attachStacktrace: true,
tracesSampleRate: props.debug ? 1.0 : 0.1,
tracesSampleRate: props.debug ? 1.0 : 0.05,
debug: props.debug,
integrations: [
Sentry.reactNativeTracingIntegration({
Expand Down

0 comments on commit 61c9649

Please sign in to comment.