summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/exporter-otlp/OtlpHttpTransportFactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/exporter-otlp/OtlpHttpTransportFactory.php')
-rw-r--r--vendor/open-telemetry/exporter-otlp/OtlpHttpTransportFactory.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/open-telemetry/exporter-otlp/OtlpHttpTransportFactory.php b/vendor/open-telemetry/exporter-otlp/OtlpHttpTransportFactory.php
new file mode 100644
index 000000000..5cf3ff9e4
--- /dev/null
+++ b/vendor/open-telemetry/exporter-otlp/OtlpHttpTransportFactory.php
@@ -0,0 +1,33 @@
+<?php
+
+declare(strict_types=1);
+
+namespace OpenTelemetry\Contrib\Otlp;
+
+use OpenTelemetry\SDK\Common\Export\Http\PsrTransport;
+use OpenTelemetry\SDK\Common\Export\Http\PsrTransportFactory;
+use OpenTelemetry\SDK\Common\Export\TransportFactoryInterface;
+
+class OtlpHttpTransportFactory implements TransportFactoryInterface
+{
+ private const DEFAULT_COMPRESSION = 'none';
+
+ public function create(
+ string $endpoint,
+ string $contentType,
+ array $headers = [],
+ $compression = null,
+ float $timeout = 10.,
+ int $retryDelay = 100,
+ int $maxRetries = 3,
+ ?string $cacert = null,
+ ?string $cert = null,
+ ?string $key = null
+ ): PsrTransport {
+ if ($compression === self::DEFAULT_COMPRESSION) {
+ $compression = null;
+ }
+
+ return PsrTransportFactory::discover()->create($endpoint, $contentType, $headers, $compression, $timeout, $retryDelay, $maxRetries, $cacert, $cert, $key);
+ }
+}