We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8685b0 commit 6447932Copy full SHA for 6447932
sentry_sdk/integrations/opentelemetry/sampler.py
@@ -195,7 +195,7 @@ def should_sample(
195
sample_rand = parent_sample_rand
196
else:
197
lower, upper = _sample_rand_range(parent_sampled, parent_sample_rate)
198
- sample_rand = _generate_sample_rand(lower, upper)
+ sample_rand = _generate_sample_rand(trace_id, (lower, upper))
199
200
# Explicit sampled value provided at start_span
201
custom_sampled = cast(
0 commit comments