summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php
blob: d2077aa396c738ce4a1af5665b2e8515e0f389d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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;
}