InMemoryExporterFactory.php
Same filename in this branch
Namespace
OpenTelemetry\SDK\Metrics\MetricExporterFile
-
vendor/
open-telemetry/ sdk/ Metrics/ MetricExporter/ InMemoryExporterFactory.php
View source
<?php
declare (strict_types=1);
namespace OpenTelemetry\SDK\Metrics\MetricExporter;
use OpenTelemetry\SDK\Metrics\MetricExporterFactoryInterface;
use OpenTelemetry\SDK\Metrics\MetricExporterInterface;
class InMemoryExporterFactory implements MetricExporterFactoryInterface {
public function create() : MetricExporterInterface {
return new InMemoryExporter();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
InMemoryExporterFactory |