diff --git a/docs/content/reference/install-configuration/observability/tracing.md b/docs/content/reference/install-configuration/observability/tracing.md
index c3748e5f1..88301dbfb 100644
--- a/docs/content/reference/install-configuration/observability/tracing.md
+++ b/docs/content/reference/install-configuration/observability/tracing.md
@@ -41,7 +41,7 @@ tracing: {}
| `tracing.addInternals` | Enables tracing for internal resources (e.g.: `ping@internal`). | false | No |
| `tracing.serviceName` | Defines the service name resource attribute. | "traefik" | No |
| `tracing.resourceAttributes` | Defines additional resource attributes to be sent to the collector. See [resourceAttributes](#resourceattributes) for details. | [] | No |
-| `tracing.sampleRate` | The proportion of requests to trace, specified between 0.0 and 1.0. | 1.0 | No |
+| `tracing.sampleRate` | The proportion of requests to trace, specified between 0.0 and 1.0.
Since Traefik supports parent-based sampling ratios, root spans (i.e., spans initiated by Traefik) are sampled according to this rate, while child spans inherit the sampling decision of their parent (i.e., the tracing context from incoming requests). See [sampleRate](#samplerate) for details. | 1.0 | No |
| | Defines the list of request headers to add as attributes.
It applies to client and server kind spans. | [] | No |
| | Defines the list of response headers to add as attributes.
It applies to client and server kind spans. | [] | False |
| `tracing.safeQueryParams` | By default, all query parameters are redacted.
Defines the list of query parameters to not redact. | [] | No |
@@ -61,6 +61,17 @@ tracing: {}
| `tracing.otlp.grpc.tls.key` | This instructs the exporter to send the tracing to the OpenTelemetry Collector using HTTP.
Setting the sub-options with their default values. | ""null/false "" | No |
| `tracing.otlp.grpc.tls.insecureskipverify` | If `insecureSkipVerify` is `true`, the TLS connection to the OpenTelemetry Collector accepts any certificate presented by the server regardless of the hostnames it covers. | false | Yes |
+## sampleRate
+
+The `sampleRate` option controls trace sampling using a `ParentBased(TraceIDRatioBased)` strategy.
+
+!!! info "Sampling Strategy Behavior"
+
+ - **Root spans** (trace originating at Traefik): Sampled according to the configured `sampleRate` using trace ID ratio-based sampling.
+ - **Child spans** (requests with existing trace context): Inherit the sampling decision from the parent span, regardless of the local `sampleRate`.
+
+ This ensures consistent sampling decisions across distributed traces: once a trace is sampled, all spans in that trace are sampled, providing complete end-to-end visibility.
+
## resourceAttributes
The `resourceAttributes` option allows setting the resource attributes sent along the traces.
diff --git a/pkg/observability/types/tracing.go b/pkg/observability/types/tracing.go
index 9f525f9c2..c9db2de76 100644
--- a/pkg/observability/types/tracing.go
+++ b/pkg/observability/types/tracing.go
@@ -97,7 +97,7 @@ func (c *OTelTracing) Setup(ctx context.Context, serviceName string, sampleRate
// span processor to aggregate spans before export.
bsp := sdktrace.NewBatchSpanProcessor(exporter)
tracerProvider := sdktrace.NewTracerProvider(
- sdktrace.WithSampler(sdktrace.TraceIDRatioBased(sampleRate)),
+ sdktrace.WithSampler(sdktrace.ParentBased(sdktrace.TraceIDRatioBased(sampleRate))),
sdktrace.WithResource(res),
sdktrace.WithSpanProcessor(bsp),
)