Configure Beyla OpenTelemetry trace sampling
Você está visualizando a versão em versão em inglês desta página porque ela ainda não foi traduzida. Possui interesse em ajudar? Veja como contribuir.
Configure Beyla OpenTelemetry trace sampling
Beyla accepts the standard OpenTelemetry environment variables to configure the sampling ratio of traces.
You can also configure sampling under the sampler
YAML subsection of the
otel_traces_export
section. For example:
otel_traces_export:
sampler:
name: 'traceidratio'
arg: '0.1'
If you’re using Grafana Alloy as your OTEL collector, you can configure the sampling policy at that level instead.
YAML environment variable | Description | Type | Default |
---|---|---|---|
name OTEL_TRACES_SAMPLER | Specifies the name of the sampler. Accepts standard sampler names from the OpenTelemetry specification. Refer to sampler name for details. | string | parentbased_always_on |
arg OTEL_TRACES_SAMPLER_ARG | Specifies the argument for the selected sampler. Only traceidratio and parentbased_traceidratio require an argument. Refer to sampler argument for details. | string | (unset) |
Sampler name
The name
property accepts the following standard sampler names:
always_on
: samples every trace. Be careful using this sampler in an application with significant traffic: a new trace will be started and exported for every requestalways_off
: samples no tracestraceidratio
: samples a given fraction of traces (specified by thearg
property). The fraction must be a real value between 0 and 1. For example, a value of"0.5"
samples 50% of the traces. Fractions >= 1 always sample. Fractions < 0 are treated as zero. To respect the parent trace’s sampling configuration, use theparentbased_traceidratio
samplerparentbased_always_on
(default): parent-based version ofalways_on
samplerparentbased_always_off
: parent-based version ofalways_off
samplerparentbased_traceidratio
: parent-based version oftraceidratio
sampler
Parent-based samplers are composite samplers that behave differently based on the parent of the traced span. If the span has no parent, the root sampler is used to make the sampling decision. If the span has a parent, the sampling configuration depends on the sampling parent.
Sampler argument
The arg
property specifies the argument for the selected sampler. Only
traceidratio
and parentbased_traceidratio
require an argument.
In YAML, you MUST provide this value as a string. Even if the value is numeric,
make sure to enclose it in quotes in the YAML file (for example, arg: "0.25"
).
Feedback
Was this page helpful?
Thank you. Your feedback is appreciated!
Please let us know how we can improve this page. Your feedback is appreciated!