Skip to content

Commit 5dee761

Browse files
Adam McKerlieAbhiPrasad
andauthored
Update ruby traces sample rate to align with comment and other platforms (#4360)
Co-authored-by: Abhijeet Prasad <[email protected]>
1 parent 6f99d5b commit 5dee761

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/wizard/ruby/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Sentry.init do |config|
2424
# Set traces_sample_rate to 1.0 to capture 100%
2525
# of transactions for performance monitoring.
2626
# We recommend adjusting this value in production.
27-
config.traces_sample_rate = 0.5
27+
config.traces_sample_rate = 1.0
2828
# or
2929
config.traces_sampler = lambda do |context|
3030
true

src/wizard/ruby/rack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Sentry.init do |config|
2626
# Set traces_sample_rate to 1.0 to capture 100%
2727
# of transactions for performance monitoring.
2828
# We recommend adjusting this value in production.
29-
config.traces_sample_rate = 0.5
29+
config.traces_sample_rate = 1.0
3030
# or
3131
config.traces_sampler = lambda do |context|
3232
true

src/wizard/ruby/rails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Sentry.init do |config|
3030
# Set tracesSampleRate to 1.0 to capture 100%
3131
# of transactions for performance monitoring.
3232
# We recommend adjusting this value in production
33-
config.traces_sample_rate = 0.5
33+
config.traces_sample_rate = 1.0
3434
# or
3535
config.traces_sampler = lambda do |context|
3636
true

0 commit comments

Comments
 (0)