From fd1bb01b6b5379aa5a4e688a2d3da27ee5068c33 Mon Sep 17 00:00:00 2001 From: Gregor Zeitlinger Date: Thu, 12 Mar 2026 08:03:39 +0000 Subject: [PATCH] fix: use /tree/ instead of /blob/ for directory URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tail sampling processor link points to a directory, not a file. GitHub redirects /blob/ → /tree/ for directories, but link checkers that remap to raw.githubusercontent.com get 400/404 for directories. Signed-off-by: Gregor Zeitlinger --- docs/content/otel/tracing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/otel/tracing.md b/docs/content/otel/tracing.md index 0e3fb72fa..33180d34a 100644 --- a/docs/content/otel/tracing.md +++ b/docs/content/otel/tracing.md @@ -56,7 +56,7 @@ Exemplars are only selected every [`minRetentionPeriodSeconds`]({{< relref "../config/config.md#exemplar-properties" >}}) seconds. Here's an example of how to configure OpenTelemetry's -[tail sampling processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/tailsamplingprocessor/) +[tail sampling processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/tailsamplingprocessor/) to sample all Spans marked with `exemplar="true"`, and then discard 90% of the traces: ```yaml