ttrss/vendor/open-telemetry/sdk/Common/Instrumentation/InstrumentationScopeInterfa...

19 lines
379 B
PHP
Raw Permalink Normal View History

2023-10-20 14:12:29 +00:00
<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Common\Instrumentation;
use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;
interface InstrumentationScopeInterface
{
public function getName(): string;
public function getVersion(): ?string;
public function getSchemaUrl(): ?string;
public function getAttributes(): AttributesInterface;
}