From ff360814a00bda2927347c07a74322f93c441727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraci=20Paix=C3=A3o=20Kr=C3=B6hling?= Date: Mon, 9 Dec 2024 14:31:31 +0100 Subject: [PATCH] [chore][processor/tailsampling] Better description for rate_limiting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #35419 Signed-off-by: Juraci Paixão Kröhling --- processor/tailsamplingprocessor/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor/tailsamplingprocessor/README.md b/processor/tailsamplingprocessor/README.md index 0c859105c8a8..0c6c9978f588 100644 --- a/processor/tailsamplingprocessor/README.md +++ b/processor/tailsamplingprocessor/README.md @@ -31,7 +31,7 @@ Multiple policies exist today and it is straight forward to add more. These incl - `status_code`: Sample based upon the status code (`OK`, `ERROR` or `UNSET`) - `string_attribute`: Sample based on string attributes (resource and record) value matches, both exact and regex value matches are supported - `trace_state`: Sample based on [TraceState](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#tracestate) value matches -- `rate_limiting`: Sample based on rate +- `rate_limiting`: Sample based on the rate of spans per second. - `span_count`: Sample based on the minimum and/or maximum number of spans, inclusive. If the sum of all spans in the trace is outside the range threshold, the trace will not be sampled. - `boolean_attribute`: Sample based on boolean attribute (resource and record). - `ottl_condition`: Sample based on given boolean OTTL condition (span and span event).