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

Breadcrumb

  1. Drupal Core 11.1.x

InstrumentationScope.php

Same filename in this branch
  1. 11.1.x vendor/open-telemetry/gen-otlp-protobuf/Opentelemetry/Proto/Common/V1/InstrumentationScope.php

Namespace

OpenTelemetry\SDK\Common\Instrumentation

File

vendor/open-telemetry/sdk/Common/Instrumentation/InstrumentationScope.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Common\Instrumentation;

use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;

/**
 * Represents the instrumentation scope information associated with the Tracer or Meter
 */
final class InstrumentationScope implements InstrumentationScopeInterface {
    public function __construct(string $name, ?string $version, ?string $schemaUrl, AttributesInterface $attributes) {
    }
    public function getName() : string {
        return $this->name;
    }
    public function getVersion() : ?string {
        return $this->version;
    }
    public function getSchemaUrl() : ?string {
        return $this->schemaUrl;
    }
    public function getAttributes() : AttributesInterface {
        return $this->attributes;
    }

}

Classes

Title Deprecated Summary
InstrumentationScope Represents the instrumentation scope information associated with the Tracer or Meter

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal