Files
tt-rss/vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php
T
2023-10-20 21:13:39 +03:00

17 lines
349 B
PHP

<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Metrics;
use OpenTelemetry\Context\ContextInterface;
use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;
/**
* @internal
*/
interface AttributeProcessorInterface
{
public function process(AttributesInterface $attributes, ContextInterface $context): AttributesInterface;
}