add stub opentelemetry classes in case it is disabled
This commit is contained in:
parent
1e3b7f7a43
commit
3d5308a6e5
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"command": "${workspaceRoot}/utils/phpstan-watcher.sh",
|
"command": "chmod +x ${workspaceRoot}/utils/phpstan-watcher.sh && ${workspaceRoot}/utils/phpstan-watcher.sh",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "gulp",
|
"type": "gulp",
|
||||||
|
|
|
@ -1,8 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
use OpenTelemetry\API\Trace\Propagation\TraceContextPropagator;
|
use OpenTelemetry\API\Trace\Propagation\TraceContextPropagator;
|
||||||
|
use OpenTelemetry\API\Trace\SpanContextInterface;
|
||||||
|
use OpenTelemetry\API\Trace\SpanInterface;
|
||||||
use OpenTelemetry\API\Trace\SpanKind;
|
use OpenTelemetry\API\Trace\SpanKind;
|
||||||
|
use OpenTelemetry\API\Trace\TraceFlags;
|
||||||
|
use OpenTelemetry\API\Trace\TraceStateInterface;
|
||||||
|
use OpenTelemetry\Context\ContextInterface;
|
||||||
|
use OpenTelemetry\Context\ContextKey;
|
||||||
|
use OpenTelemetry\Context\ContextKeyInterface;
|
||||||
|
use OpenTelemetry\Context\ImplicitContextKeyedInterface;
|
||||||
|
use OpenTelemetry\Context\ScopeInterface;
|
||||||
use OpenTelemetry\Contrib\Otlp\OtlpHttpTransportFactory;
|
use OpenTelemetry\Contrib\Otlp\OtlpHttpTransportFactory;
|
||||||
use OpenTelemetry\Contrib\Otlp\SpanExporter;
|
use OpenTelemetry\Contrib\Otlp\SpanExporter;
|
||||||
use OpenTelemetry\SDK\Common\Attribute\Attributes;
|
use OpenTelemetry\SDK\Common\Attribute\Attributes;
|
||||||
|
@ -10,20 +18,126 @@ use OpenTelemetry\SDK\Resource\ResourceInfo;
|
||||||
use OpenTelemetry\SDK\Resource\ResourceInfoFactory;
|
use OpenTelemetry\SDK\Resource\ResourceInfoFactory;
|
||||||
use OpenTelemetry\SDK\Trace\Sampler\AlwaysOnSampler;
|
use OpenTelemetry\SDK\Trace\Sampler\AlwaysOnSampler;
|
||||||
use OpenTelemetry\SDK\Trace\Sampler\ParentBased;
|
use OpenTelemetry\SDK\Trace\Sampler\ParentBased;
|
||||||
use OpenTelemetry\SDK\Trace\SpanExporter\InMemoryExporter;
|
|
||||||
use OpenTelemetry\SDK\Trace\SpanProcessor\SimpleSpanProcessor;
|
use OpenTelemetry\SDK\Trace\SpanProcessor\SimpleSpanProcessor;
|
||||||
use OpenTelemetry\SDK\Trace\TracerProvider;
|
use OpenTelemetry\SDK\Trace\TracerProvider;
|
||||||
use OpenTelemetry\SemConv\ResourceAttributes;
|
use OpenTelemetry\SemConv\ResourceAttributes;
|
||||||
|
|
||||||
class Tracer {
|
class DummyContextInterface implements ContextInterface {
|
||||||
/** @var Tracer $instance */
|
|
||||||
|
/** @var DummyContextInterface */
|
||||||
private static $instance;
|
private static $instance;
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
self::$instance = $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @phpstan-ignore-next-line */
|
||||||
|
public static function createKey(string $key): ContextKeyInterface { return new ContextKey(); }
|
||||||
|
|
||||||
|
public static function getCurrent(): ContextInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public function activate(): ScopeInterface { return new DummyScopeInterface(); }
|
||||||
|
|
||||||
|
public function with(ContextKeyInterface $key, $value): ContextInterface { return $this; }
|
||||||
|
|
||||||
|
public function withContextValue(ImplicitContextKeyedInterface $value): ContextInterface { return $this; }
|
||||||
|
|
||||||
|
public function get(ContextKeyInterface $key) { return new ContextKey(); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
class DummySpanContextInterface implements SpanContextInterface {
|
||||||
|
|
||||||
|
/** @var DummySpanContextInterface $instance */
|
||||||
|
private static $instance;
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
self::$instance = $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function createFromRemoteParent(string $traceId, string $spanId, int $traceFlags = TraceFlags::DEFAULT, ?TraceStateInterface $traceState = null): SpanContextInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public static function getInvalid(): SpanContextInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public static function create(string $traceId, string $spanId, int $traceFlags = TraceFlags::DEFAULT, ?TraceStateInterface $traceState = null): SpanContextInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public function getTraceId(): string { return ""; }
|
||||||
|
|
||||||
|
public function getTraceIdBinary(): string { return ""; }
|
||||||
|
|
||||||
|
public function getSpanId(): string { return ""; }
|
||||||
|
|
||||||
|
public function getSpanIdBinary(): string { return ""; }
|
||||||
|
|
||||||
|
public function getTraceFlags(): int { return 0; }
|
||||||
|
|
||||||
|
public function getTraceState(): ?TraceStateInterface { return null; }
|
||||||
|
|
||||||
|
public function isValid(): bool { return false; }
|
||||||
|
|
||||||
|
public function isRemote(): bool { return false; }
|
||||||
|
|
||||||
|
public function isSampled(): bool { return false; }
|
||||||
|
}
|
||||||
|
|
||||||
|
class DummyScopeInterface implements ScopeInterface {
|
||||||
|
public function detach(): int { return 0; }
|
||||||
|
}
|
||||||
|
|
||||||
|
class DummySpanInterface implements SpanInterface {
|
||||||
|
|
||||||
|
/** @var DummySpanInterface $instance */
|
||||||
|
private static $instance;
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
self::$instance = $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function fromContext(ContextInterface $context): SpanInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public static function getCurrent(): SpanInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public static function getInvalid(): SpanInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public static function wrap(SpanContextInterface $spanContext): SpanInterface { return self::$instance; }
|
||||||
|
|
||||||
|
public function getContext(): SpanContextInterface { return new DummySpanContextInterface(); }
|
||||||
|
|
||||||
|
public function isRecording(): bool { return false; }
|
||||||
|
|
||||||
|
/** @phpstan-ignore-next-line */
|
||||||
|
public function setAttribute(string $key, $value): SpanInterface { return self::$instance; }
|
||||||
|
|
||||||
|
/** @phpstan-ignore-next-line */
|
||||||
|
public function setAttributes(iterable $attributes): SpanInterface { return self::$instance; }
|
||||||
|
|
||||||
|
/** @phpstan-ignore-next-line */
|
||||||
|
public function addEvent(string $name, iterable $attributes = [], ?int $timestamp = null): SpanInterface { return $this; }
|
||||||
|
|
||||||
|
/** @phpstan-ignore-next-line */
|
||||||
|
public function recordException(Throwable $exception, iterable $attributes = []): SpanInterface { return $this; }
|
||||||
|
|
||||||
|
public function updateName(string $name): SpanInterface { return $this; }
|
||||||
|
|
||||||
|
public function setStatus(string $code, ?string $description = null): SpanInterface { return $this; }
|
||||||
|
|
||||||
|
public function end(?int $endEpochNanos = null): void { }
|
||||||
|
|
||||||
|
public function activate(): ScopeInterface { return new DummyScopeInterface(); }
|
||||||
|
|
||||||
|
public function storeInContext(ContextInterface $context): ContextInterface { return new DummyContextInterface(); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
class Tracer {
|
||||||
|
/** @var Tracer $instance */
|
||||||
|
private static $instance = null;
|
||||||
|
|
||||||
/** @var OpenTelemetry\SDK\Trace\TracerProviderInterface $tracerProvider */
|
/** @var OpenTelemetry\SDK\Trace\TracerProviderInterface $tracerProvider */
|
||||||
private $tracerProvider;
|
private $tracerProvider = null;
|
||||||
|
|
||||||
/** @var OpenTelemetry\API\Trace\TracerInterface $tracer */
|
/** @var OpenTelemetry\API\Trace\TracerInterface $tracer */
|
||||||
private $tracer;
|
private $tracer = null;
|
||||||
|
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
$OPENTELEMETRY_ENDPOINT = Config::get(Config::OPENTELEMETRY_ENDPOINT);
|
$OPENTELEMETRY_ENDPOINT = Config::get(Config::OPENTELEMETRY_ENDPOINT);
|
||||||
|
@ -31,9 +145,6 @@ class Tracer {
|
||||||
if ($OPENTELEMETRY_ENDPOINT) {
|
if ($OPENTELEMETRY_ENDPOINT) {
|
||||||
$transport = (new OtlpHttpTransportFactory())->create($OPENTELEMETRY_ENDPOINT, 'application/x-protobuf');
|
$transport = (new OtlpHttpTransportFactory())->create($OPENTELEMETRY_ENDPOINT, 'application/x-protobuf');
|
||||||
$exporter = new SpanExporter($transport);
|
$exporter = new SpanExporter($transport);
|
||||||
} else {
|
|
||||||
$exporter = new InMemoryExporter();
|
|
||||||
}
|
|
||||||
|
|
||||||
$resource = ResourceInfoFactory::emptyResource()->merge(
|
$resource = ResourceInfoFactory::emptyResource()->merge(
|
||||||
ResourceInfo::create(Attributes::create(
|
ResourceInfo::create(Attributes::create(
|
||||||
|
@ -67,18 +178,23 @@ class Tracer {
|
||||||
$this->tracerProvider->shutdown();
|
$this->tracerProvider->shutdown();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @return OpenTelemetry\API\Trace\SpanInterface
|
* @return OpenTelemetry\API\Trace\SpanInterface
|
||||||
*/
|
*/
|
||||||
private function _start(string $name) {
|
private function _start(string $name) {
|
||||||
|
if ($this->tracer != null) {
|
||||||
$span = $this->tracer
|
$span = $this->tracer
|
||||||
->spanBuilder($name)
|
->spanBuilder($name)
|
||||||
->setSpanKind(SpanKind::KIND_SERVER)
|
->setSpanKind(SpanKind::KIND_SERVER)
|
||||||
->startSpan();
|
->startSpan();
|
||||||
|
|
||||||
$span->activate();
|
$span->activate();
|
||||||
|
} else {
|
||||||
|
$span = new DummySpanInterface();
|
||||||
|
}
|
||||||
|
|
||||||
return $span;
|
return $span;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue