Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

InstrumentationScopeNameCriteria.php

Namespace

OpenTelemetry\SDK\Metrics\View\SelectionCriteria

File

vendor/open-telemetry/sdk/Metrics/View/SelectionCriteria/InstrumentationScopeNameCriteria.php

View source
<?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 InstrumentationScopeNameCriteria implements SelectionCriteriaInterface {
    public function __construct(string $name) {
    }
    public function accepts(Instrument $instrument, InstrumentationScopeInterface $instrumentationScope) : bool {
        return $this->name === $instrumentationScope->getName();
    }

}

Classes

Title Deprecated Summary
InstrumentationScopeNameCriteria
RSS feed
Powered by Drupal