25 lines
649 B
PHP
25 lines
649 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Metrics\Exemplar;
|
||
|
|
||
|
use OpenTelemetry\Context\ContextInterface;
|
||
|
use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;
|
||
|
use OpenTelemetry\SDK\Metrics\Data\Exemplar;
|
||
|
|
||
|
interface ExemplarReservoirInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param int|string $index
|
||
|
* @param float|int $value
|
||
|
*/
|
||
|
public function offer($index, $value, AttributesInterface $attributes, ContextInterface $context, int $timestamp): void;
|
||
|
|
||
|
/**
|
||
|
* @param array<AttributesInterface> $dataPointAttributes
|
||
|
* @return array<Exemplar>
|
||
|
*/
|
||
|
public function collect(array $dataPointAttributes): array;
|
||
|
}
|