Skip to content

Commit 2f00a67

Browse files
Apply suggestions from code review
Co-authored-by: Anton Pirker <[email protected]>
1 parent ad45636 commit 2f00a67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

develop-docs/sdk/telemetry/traces/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This Option replaces the non-standardized `tracingOrigins` option which was prev
7474

7575
### `strictTracePropagation`
7676

77-
This option disables trace continuation from unknown 3rd party services that happen to be instrumented by a Sentry SDK.
77+
This should be a boolean value. Default is `false`. This option controls trace continuation from unknown 3rd party services that happen to be instrumented by a Sentry SDK.
7878

7979
If the SDK can parse an org ID from the configured DSN, it must be propagated as a baggage entry with the key `sentry-org`. Given a DSN of `https://[email protected]/1`, the org ID is `1`, based on `o1`.
8080

@@ -216,7 +216,7 @@ Without a `tracesSampler` callback, an SDK fully inherits sampling decisions for
216216

217217
The random value is set according to the following rules:
218218

219-
1. When an SDK starts a new trace, `sample_rand` is always set to a truly random number in range `[0, 1]`. This explicitly includes traces that are not sampled, as well as when the `tracesSampleRate` is set to `0.0` or `1.0`.
219+
1. When an SDK starts a new trace, `sample_rand` is always set to a random number in range `[0, 1]`. This explicitly includes traces that are not sampled, as well as when the `tracesSampleRate` is set to `0.0` or `1.0`.
220220
2. It is _recommended_ to generate the random number deterministically using the trace ID as seed or source of randomness. The exact method by which the random number is created is implementation defined and may vary between SDK implementations.
221221
3. On incoming traces, an SDK assumes the `sample_rand` value along with the rest of the DSC, overriding an existing value if needed.
222222
4. If `sample_rand` is missing on an incoming trace, the SDK creates and from now on propagates a new random number on-the-fly, based on the following rules:

0 commit comments

Comments
 (0)