Files
tt-rss/vendor/open-telemetry/sdk/Common/Instrumentation/InstrumentationScopeInterface.php
T
2023-10-20 21:13:39 +03:00

19 lines
379 B
PHP

<?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;
}