You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,18 @@
2
2
3
3
## Unreleased
4
4
5
+
- Add support for W3C traceparent header for outgoing requests ([#4661](https://github.com/getsentry/sentry-dotnet/pull/4661))
6
+
This feature is disabled by default. When enabled, outgoing requests will include the W3C traceparent header.
7
+
```csharp
8
+
SentrySdk.Init(options=>
9
+
{
10
+
// ...
11
+
options.PropagateTraceparent=true;
12
+
});
13
+
```
14
+
15
+
See https://develop.sentry.dev/sdk/telemetry/traces/distributed-tracing/#w3c-trace-context-header for more details.
16
+
5
17
### Fixes
6
18
7
19
- Do not allow multiple `sentry.proguard-uuid` metadata to be set in Android manifest ([#4647](https://github.com/getsentry/sentry-dotnet/pull/4647))
0 commit comments