1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<?php
namespace Wikimedia\Telemetry;
/**
* A no-op tracer that creates no-op spans and persists no data.
* Useful for scenarios where tracing is disabled.
*
* @since 1.43
* @internal
*/
class NoopTracer implements TracerInterface {
private SpanContext $noopSpanContext;
public function __construct() {
$this->noopSpanContext = new SpanContext( '', '', null, '', false );
}
/** @inheritDoc */
public function createSpan( string $spanName, $parentSpan = null ): SpanInterface {
return new NoopSpan( $this->noopSpanContext );
}
/** @inheritDoc */
public function createRootSpan( string $spanName ): SpanInterface {
return new NoopSpan( $this->noopSpanContext );
}
/** @inheritDoc */
public function createSpanWithParent( string $spanName, SpanContext $parentSpanContext ): SpanInterface {
return new NoopSpan( $this->noopSpanContext );
}
/** @inheritDoc */
public function shutdown(): void {
// no-op
}
}
|