Flow PHP

Sampler

Interface for sampling decisions.

Samplers determine whether a span should be recorded and/or exported. This allows controlling the volume of telemetry data while maintaining the ability to trace complete transactions.

Example usage:

$sampler = new TraceIdRatioBasedSampler(0.1); // 10% sampling

$result = $sampler->shouldSample($span);

if ($result->decision->isRecording()) {
    // Record the span
}

Methods

__toString()  : string
Get a string representation of this sampler for debugging.
shouldSample()  : SamplingResult
Determine if a span should be sampled.

Methods

__toString()

Get a string representation of this sampler for debugging.

public __toString() : string

Examples:

  • "AlwaysOnSampler"
  • "TraceIdRatioBasedSampler{0.001}"
  • "ParentBased{root=AlwaysOnSampler}"
Return values
string

shouldSample()

Determine if a span should be sampled.

public shouldSample(Span $span) : SamplingResult
Parameters
$span : Span

The span to evaluate for sampling

Return values
SamplingResult

The sampling decision


        
On this page

Search results