25 lines
703 B
PHP
25 lines
703 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Metrics\View\SelectionCriteria;
|
||
|
|
||
|
use OpenTelemetry\SDK\Common\Instrumentation\InstrumentationScopeInterface;
|
||
|
use OpenTelemetry\SDK\Metrics\Instrument;
|
||
|
use OpenTelemetry\SDK\Metrics\View\SelectionCriteriaInterface;
|
||
|
|
||
|
final class InstrumentationScopeSchemaUrlCriteria implements SelectionCriteriaInterface
|
||
|
{
|
||
|
private ?string $schemaUrl;
|
||
|
|
||
|
public function __construct(?string $schemaUrl)
|
||
|
{
|
||
|
$this->schemaUrl = $schemaUrl;
|
||
|
}
|
||
|
|
||
|
public function accepts(Instrument $instrument, InstrumentationScopeInterface $instrumentationScope): bool
|
||
|
{
|
||
|
return $this->schemaUrl === $instrumentationScope->getSchemaUrl();
|
||
|
}
|
||
|
}
|