Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Troubleshooting for ASE #2473

Merged
merged 1 commit into from
Nov 12, 2024
Merged
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
13 changes: 12 additions & 1 deletion docs/troubleshooting.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -283,4 +283,15 @@ Should be changed to:

image::./images/integrated-pipeline.png[Integrated Managed Pipeline Mode in Properties]

You may need to restart Visual Studio for these changes to fully apply.
You may need to restart Visual Studio for these changes to fully apply.

[float]
[[azure-app-services-traceparent]]
=== Azure App Services / ASE and sampling

Azure/ASE adds trace headers set to unsampled for incoming requests to the cluster.

Elastic APM .NET Agent (and likely also other agents which correctly handle the W3C Trace Parent header sampling) will obey to the traceparent header sampling of the incoming request.
As a consequence, the traces/spans will not be sent to APM Server/Integration and therefore APM UI will not show anything.

We recommend using `trace_continuation_strategy` set to `restart` or `restart_external`, so that the APM .NET Agent will ignore the incoming traceparent header sampling flag.
Loading