Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions docs/concepts/otlp/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,20 @@ The following SDKs support the `propagateTraceparent` option:
- <LinkWithPlatformIcon
platform="android"
label="Android"
url="/platforms/android/configuration/options/#propagate-traceparent"
url="/platforms/android/configuration/options/#propagateTraceparent"
/>
- <LinkWithPlatformIcon
platform="dart.flutter"
label="Flutter"
url="/platforms/dart/guides/flutter/configuration/options/#propagate-traceparent"
url="/platforms/dart/guides/flutter/configuration/options/#propagateTraceparent"
/>
- <LinkWithPlatformIcon
platform="native"
label="Native"
url="/platforms/native/configuration/options/#propagate_traceparent"
/>
- <LinkWithPlatformIcon
platform="react-native"
label="React Native"
url="/platforms/react-native/configuration/options/#propagateTraceparent"
/>
2 changes: 1 addition & 1 deletion docs/platforms/android/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ If <PlatformIdentifier name="tracePropagationTargets" /> is not provided, trace

<SdkOption name="propagateTraceparent" type="bool" defaultValue="false" availableSince="8.22.0">

Controls whether the SDK should propagate the W3C `traceparent` HTTP header alongside the `sentry-trace` and `baggage` headers for distributed tracing.
Controls whether the SDK should propagate the W3C `traceparent` HTTP header alongside the `sentry-trace` and `baggage` headers for outgoing HTTP requests.

</SdkOption>

Expand Down
6 changes: 6 additions & 0 deletions docs/platforms/dart/guides/flutter/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,12 @@ If <PlatformIdentifier name="tracePropagationTargets" /> is not provided, trace

</SdkOption>

<SdkOption name="propagateTraceparent" type="bool" defaultValue="false" availableSince="9.7.0">

Controls whether the SDK should propagate the W3C `traceparent` HTTP header alongside the `sentry-trace` and `baggage` headers for outgoing HTTP requests.

</SdkOption>

## Experimental Features

<SdkOption name="experimental" type="object">
Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/native/common/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Whether Crashpad should delay application shutdown until the upload of the crash

</SdkOption>

<SdkOption name="propagate_traceparent" type="bool" defaultValue="false">
<SdkOption name="propagate_traceparent" type="bool" defaultValue="false" availableSince="0.11.3">

Controls whether the SDK should propagate the W3C `traceparent` HTTP header alongside the `sentry-trace` header for [distributed tracing](https://docs.sentry.io/platforms/native/tracing/trace-propagation/custom-instrumentation/).

Expand Down
6 changes: 6 additions & 0 deletions docs/platforms/react-native/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,12 @@ If <PlatformIdentifier name="tracePropagationTargets" /> is not provided, trace

</SdkOption>

<SdkOption name="propagateTraceparent" type="bool" defaultValue="false" availableSince="7.4.0">

Controls whether the SDK should propagate the W3C `traceparent` HTTP header alongside the `sentry-trace` and `baggage` headers for outgoing HTTP requests.

</SdkOption>

## Experimental Features

<SdkOption name="experimental">
Expand Down
Loading