From 7659b78dfa75c5f0630a4e2a8fe69c0bbc338fae Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Mon, 29 Jun 2026 11:43:45 +1200 Subject: [PATCH 1/2] feat(dotnet): document PropagateTraceparent option Add .NET to the list of SDKs supporting propagateTraceparent on the OTLP concepts page, and document the PropagateTraceparent option on the .NET SentryOptions reference page. Closes getsentry/sentry-dotnet#5300 Co-Authored-By: Claude Opus 4.8 --- docs/concepts/otlp/sentry-with-otel.mdx | 7 +++++++ docs/platforms/dotnet/common/configuration/options.mdx | 10 ++++++++++ 2 files changed, 17 insertions(+) diff --git a/docs/concepts/otlp/sentry-with-otel.mdx b/docs/concepts/otlp/sentry-with-otel.mdx index cc6619664a831..6b813665ad202 100644 --- a/docs/concepts/otlp/sentry-with-otel.mdx +++ b/docs/concepts/otlp/sentry-with-otel.mdx @@ -68,6 +68,13 @@ The following SDKs support the `propagateTraceparent` option: - - + +
+ + ### .NET + + - +
diff --git a/docs/platforms/dotnet/common/configuration/options.mdx b/docs/platforms/dotnet/common/configuration/options.mdx index 7fd7f2e92c5f8..80d9ef70819d3 100644 --- a/docs/platforms/dotnet/common/configuration/options.mdx +++ b/docs/platforms/dotnet/common/configuration/options.mdx @@ -345,3 +345,13 @@ Disables the `SentryHttpMessageHandler`, which normally instruments outgoing HTT This option was added in SDK version 5.1.0. + + + +If set to `true`, the SDK adds the [W3C `traceparent` header](https://www.w3.org/TR/trace-context/) to outgoing HTTP requests, in addition to the `sentry-trace` and `baggage` headers. Enable this when your backend services are instrumented with a W3C Trace Context compatible library, such as OpenTelemetry, and you want to continue the trace from the client. + +The `traceparent` header is only attached to requests whose URLs match `TracePropagationTargets`. + +This option was added in SDK version 6.0.0. + + From 8bc7880c084bdd5de440cd2b6a5634e7f0b5bdd7 Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Mon, 29 Jun 2026 14:01:26 +1200 Subject: [PATCH 2/2] fix: keep .NET within 3-column grid instead of adding a 4th column Co-Authored-By: Claude Opus 4.8 --- docs/concepts/otlp/sentry-with-otel.mdx | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/concepts/otlp/sentry-with-otel.mdx b/docs/concepts/otlp/sentry-with-otel.mdx index 6b813665ad202..8f072db128695 100644 --- a/docs/concepts/otlp/sentry-with-otel.mdx +++ b/docs/concepts/otlp/sentry-with-otel.mdx @@ -68,9 +68,6 @@ The following SDKs support the `propagateTraceparent` option: - - - -
- ### .NET -