File: NoopTracer.php

package info (click to toggle)
mediawiki 1%3A1.43.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 420,592 kB
  • sloc: php: 1,064,309; javascript: 664,315; sql: 9,737; python: 5,743; xml: 3,489; sh: 1,131; makefile: 64
file content (38 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (4)
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
	}
}