Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@
* [Labels](pipeline/processors/labels.md)
* [Metrics Selector](pipeline/processors/metrics-selector.md)
* [OpenTelemetry Envelope](pipeline/processors/opentelemetry-envelope.md)
* [Sampling](pipeline/processors/sampling.md)
* [SQL](pipeline/processors/sql.md)
* [Traces](pipeline/processors/traces.md)
* [Filters as processors](pipeline/processors/filters.md)
* [Conditional processing](pipeline/processors/conditional-processing.md)
* [Filters](pipeline/filters/README.md)
Expand Down
4 changes: 2 additions & 2 deletions pipeline/processors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Fluent Bit offers the following processors:
- [Metrics Selector](metrics-selector.md): Choose which metrics to keep or discard.
- [OpenTelemetry Envelope](opentelemetry-envelope.md): Transform logs into an
OpenTelemetry-compatible format.
- [SQL](sql.md): Use SQL queries to extract log content.
- [Traces](traces.md): Trace sampling designed with a pluggable architecture,
- [Sampling](sampling.md): Trace sampling designed with a pluggable architecture,
allowing easy extension to support multiple sampling strategies and backends.
- [SQL](sql.md): Use SQL queries to extract log content.
- [Filters](filters.md): Any filter can be used as a processor.

## Features
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Traces
# Sampling

The _Traces_ sampling processor is designed with a pluggable architecture, allowing easy extension to support multiple sampling strategies and backends. It provides you with the ability to apply head or tail sampling to incoming trace telemetry data.
The _Sampling_ processor is designed with a pluggable architecture, allowing easy extension to support multiple trace sampling strategies and backends. It provides you with the ability to apply head or tail sampling to incoming trace telemetry data.

Available samplers:

Expand All @@ -21,9 +21,9 @@ Conditions:

The processor does not provide any extra configuration parameter, it can be used directly in your _processors_ Yaml directive.

## Traces types
## Sampling types

Traces have both a name and a type with the following possible settings:
Sampling has both a name and a type with the following possible settings:

| Key | Possible values |
| :----- | :---------------------: |
Expand Down