summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/Stream/MetricCollectorInterface.php
blob: 51a728df767ee4c19283212f0ecde02e27539258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics\Stream;

/**
 * @internal
 */
interface MetricCollectorInterface
{
    public function collect(int $timestamp): Metric;
}