File manager - Edit - /var/www/payraty/helpdesk/vendor/open-telemetry/api/Metrics/Noop/NoopMeter.php
Back
<?php declare(strict_types=1); namespace OpenTelemetry\API\Metrics\Noop; use OpenTelemetry\API\Metrics\AsynchronousInstrument; use OpenTelemetry\API\Metrics\CounterInterface; use OpenTelemetry\API\Metrics\HistogramInterface; use OpenTelemetry\API\Metrics\MeterInterface; use OpenTelemetry\API\Metrics\ObservableCallbackInterface; use OpenTelemetry\API\Metrics\ObservableCounterInterface; use OpenTelemetry\API\Metrics\ObservableGaugeInterface; use OpenTelemetry\API\Metrics\ObservableUpDownCounterInterface; use OpenTelemetry\API\Metrics\UpDownCounterInterface; final class NoopMeter implements MeterInterface { public function batchObserve(callable $callback, AsynchronousInstrument $instrument, AsynchronousInstrument ...$instruments): ObservableCallbackInterface { return new NoopObservableCallback(); } public function createCounter(string $name, ?string $unit = null, ?string $description = null, array $advisory = []): CounterInterface { return new NoopCounter(); } public function createObservableCounter(string $name, ?string $unit = null, ?string $description = null, $advisory = [], callable ...$callbacks): ObservableCounterInterface { return new NoopObservableCounter(); } public function createHistogram(string $name, ?string $unit = null, ?string $description = null, array $advisory = []): HistogramInterface { return new NoopHistogram(); } public function createObservableGauge(string $name, ?string $unit = null, ?string $description = null, $advisory = [], callable ...$callbacks): ObservableGaugeInterface { return new NoopObservableGauge(); } public function createUpDownCounter(string $name, ?string $unit = null, ?string $description = null, array $advisory = []): UpDownCounterInterface { return new NoopUpDownCounter(); } public function createObservableUpDownCounter(string $name, ?string $unit = null, ?string $description = null, $advisory = [], callable ...$callbacks): ObservableUpDownCounterInterface { return new NoopObservableUpDownCounter(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings