8000 Avoid duplicate ID in downstream by ahus1 · Pull Request #38922 · keycloak/keycloak · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Avoid duplicate ID in downstream #38922

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

Merged
merged 1 commit into from
Apr 15, 2025
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
4 changes: 2 additions & 2 deletions docs/guides/observability/tracing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ For instance, to disable trace info in the `console` log, you can turn it off as

NOTE: When you explicitly override the log format for the particular log handlers, the `*-include-trace` options do not have any effect, and no tracing is included.

[[sampling]]
== Sampling

Sampler decides whether a trace should be discarded or forwarded, effectively reducing overhead by limiting the number of collected traces sent to the collector.
The sampler decides whether a trace should be discarded or forwarded, effectively reducing overhead by limiting the number of collected traces sent to the collector.
It helps manage resource consumption, which leads to avoiding the huge storage costs of tracing every single request and potential performance penalty.

WARNING: For a production-ready environment, sampling should be properly set to minimize infrastructure costs.
Expand All @@ -135,7 +136,6 @@ WARNING: For a production-ready environment, sampling should be properly set to

The used sampler can be changed via the `tracing-sampler-type` property.

[[sampling]]
=== Default sampler
The default sampler for {project_name} is `traceidratio`, which controls the rate of trace sampling based on a specified ratio configurable via the `tracing-sampler-ratio` property.

Expand Down
0