ttrss/vendor/open-telemetry/sdk/Metrics/MetricRegistrationInterface...

14 lines
246 B
PHP
Raw Permalink Normal View History

2023-10-20 14:12:29 +00:00
<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Metrics;
/**
* @internal
*/
interface MetricRegistrationInterface
{
public function register(MetricSourceProviderInterface $provider, MetricMetadataInterface $metadata): void;
}