diff --git a/cmd/common.go b/cmd/common.go index bdc7977..318abc4 100644 --- a/cmd/common.go +++ b/cmd/common.go @@ -75,12 +75,10 @@ func getBuildTime() time.Time { func setupSentry() { err := sentry.Init(sentry.ClientOptions{ - Dsn: SentryDSN, - EnableTracing: true, - TracesSampleRate: 0.5, - ProfilesSampleRate: 0.1, - SendDefaultPII: true, - Release: GitCommit, + Dsn: SentryDSN, + EnableTracing: false, + SendDefaultPII: true, + Release: GitCommit, }) if err != nil { log.Fatalf("sentry.Init: %s", err)