Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

SimpleLogRecordProcessor.php

Namespace

OpenTelemetry\SDK\Logs\Processor

File

vendor/open-telemetry/sdk/Logs/Processor/SimpleLogRecordProcessor.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Logs\Processor;

use OpenTelemetry\Context\ContextInterface;
use OpenTelemetry\SDK\Common\Future\CancellationInterface;
use OpenTelemetry\SDK\Logs\LogRecordExporterInterface;
use OpenTelemetry\SDK\Logs\LogRecordProcessorInterface;
use OpenTelemetry\SDK\Logs\ReadWriteLogRecord;
class SimpleLogRecordProcessor implements LogRecordProcessorInterface {
    public function __construct(LogRecordExporterInterface $exporter) {
    }
    
    /**
     * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/sdk.md#onemit
     */
    public function onEmit(ReadWriteLogRecord $record, ?ContextInterface $context = null) : void {
        $this->exporter
            ->export([
            $record,
        ]);
    }
    public function shutdown(?CancellationInterface $cancellation = null) : bool {
        return $this->exporter
            ->shutdown($cancellation);
    }
    public function forceFlush(?CancellationInterface $cancellation = null) : bool {
        return $this->exporter
            ->forceFlush($cancellation);
    }

}

Classes

Title Deprecated Summary
SimpleLogRecordProcessor
RSS feed
Powered by Drupal