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

Breadcrumb

  1. Drupal Core 11.1.x

InMemoryExporter.php

Same filename in this branch
  1. 11.1.x vendor/open-telemetry/sdk/Metrics/MetricExporter/InMemoryExporter.php
  2. 11.1.x vendor/open-telemetry/sdk/Logs/Exporter/InMemoryExporter.php

Namespace

OpenTelemetry\SDK\Trace\SpanExporter

File

vendor/open-telemetry/sdk/Trace/SpanExporter/InMemoryExporter.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Trace\SpanExporter;

use ArrayObject;
use OpenTelemetry\SDK\Trace\Behavior\SpanExporterTrait;
use OpenTelemetry\SDK\Trace\SpanExporterInterface;
class InMemoryExporter implements SpanExporterInterface {
    use SpanExporterTrait;
    public function __construct(ArrayObject $storage = new ArrayObject()) {
    }
    protected function doExport(iterable $spans) : bool {
        foreach ($spans as $span) {
            $this->storage
                ->append($span);
        }
        return true;
    }
    public function getSpans() : array {
        return (array) $this->storage;
    }
    public function getStorage() : ArrayObject {
        return $this->storage;
    }

}

Classes

Title Deprecated Summary
InMemoryExporter

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal