summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php')
-rw-r--r--vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php b/vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php
new file mode 100644
index 000000000..d2077aa39
--- /dev/null
+++ b/vendor/open-telemetry/sdk/Metrics/AttributeProcessorInterface.php
@@ -0,0 +1,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;
+}