14 lines
348 B
PHP
14 lines
348 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Metrics\View;
|
||
|
|
||
|
use OpenTelemetry\SDK\Common\Instrumentation\InstrumentationScopeInterface;
|
||
|
use OpenTelemetry\SDK\Metrics\Instrument;
|
||
|
|
||
|
interface SelectionCriteriaInterface
|
||
|
{
|
||
|
public function accepts(Instrument $instrument, InstrumentationScopeInterface $instrumentationScope): bool;
|
||
|
}
|