feat: disable sentry tracing by default
This commit is contained in:
parent
910f1f8ba2
commit
ecacbb1cbd
|
@ -28,11 +28,11 @@ func NewDefaultSentryConfig() SentryConfig {
|
||||||
Debug: false,
|
Debug: false,
|
||||||
FlushTimeout: NewInterpolatedDuration(2 * time.Second),
|
FlushTimeout: NewInterpolatedDuration(2 * time.Second),
|
||||||
AttachStacktrace: true,
|
AttachStacktrace: true,
|
||||||
SampleRate: 0.2,
|
SampleRate: 1,
|
||||||
EnableTracing: true,
|
EnableTracing: false,
|
||||||
TracesSampleRate: 0.2,
|
TracesSampleRate: 0.1,
|
||||||
ProfilesSampleRate: 0.2,
|
ProfilesSampleRate: 0.1,
|
||||||
IgnoreErrors: []string{},
|
IgnoreErrors: []string{"context canceled"},
|
||||||
SendDefaultPII: false,
|
SendDefaultPII: false,
|
||||||
ServerName: "",
|
ServerName: "",
|
||||||
Environment: "",
|
Environment: "",
|
||||||
|
|
Loading…
Reference in New Issue