Flow PHP

AlignedHistogramBucketExemplarReservoir implements ExemplarReservoir

FinalYes

Histogram-aligned reservoir keeping one exemplar per bucket.

This reservoir stores at most one exemplar per histogram bucket, providing representative samples across the entire value range. When multiple measurements fall into the same bucket, the latest one is kept.

This is appropriate for Histogram instruments where bucket alignment provides meaningful samples across the value distribution.

Interfaces

ExemplarReservoir
Stores a bounded collection of exemplars for metric aggregation.

Methods

__construct()  : mixed
collect()  : array<string|int, Exemplar>
Collect all stored exemplars.
offer()  : void
Offer a measurement for potential storage as an exemplar.
reset()  : void
Clear all stored exemplars.

Methods

offer()

Offer a measurement for potential storage as an exemplar.

public offer(int|float $value, array<string|int, mixed> $attributes, SpanContext $context, DateTimeImmutable $timestamp[, int $bucketIndex = 0 ]) : void

The reservoir decides whether to keep this measurement based on its sampling strategy. Not all offered measurements will be stored.

Parameters
$value : int|float

The measurement value

$attributes : array<string|int, mixed>

The measurement attributes

$context : SpanContext

The span context for trace correlation

$timestamp : DateTimeImmutable

When the measurement was recorded

$bucketIndex : int = 0

For histogram buckets, the bucket index; ignored by other reservoirs


        
On this page

Search results