20 lines
413 B
PHP
20 lines
413 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenTelemetry\SDK\Metrics\Stream;
|
|
|
|
use OpenTelemetry\Context\ContextInterface;
|
|
use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface WritableMetricStreamInterface
|
|
{
|
|
/**
|
|
* @param float|int $value
|
|
*/
|
|
public function record($value, AttributesInterface $attributes, ContextInterface $context, int $timestamp): void;
|
|
}
|