Class OtlpHttpSpanExporter
java.lang.Object
io.opentelemetry.exporter.otlp.http.trace.OtlpHttpSpanExporter
- All Implemented Interfaces:
io.opentelemetry.sdk.trace.export.SpanExporter,Closeable,AutoCloseable
@ThreadSafe
public final class OtlpHttpSpanExporter
extends Object
implements io.opentelemetry.sdk.trace.export.SpanExporter
Exports spans using OTLP via HTTP, using OpenTelemetry's protobuf model.
- Since:
- 1.5.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic OtlpHttpSpanExporterBuilderbuilder()Returns a new builder instance for this exporter.io.opentelemetry.sdk.common.CompletableResultCodeexport(Collection<io.opentelemetry.sdk.trace.data.SpanData> spans) Submits all the given spans in a single batch to the OpenTelemetry collector.io.opentelemetry.sdk.common.CompletableResultCodeflush()The OTLP exporter does not batch spans, so this method will immediately return with success.static OtlpHttpSpanExporterReturns a newOtlpHttpSpanExporterusing the default values.io.opentelemetry.sdk.common.CompletableResultCodeshutdown()Shutdown the exporter, releasing any resources and preventing subsequent exports.Returns a builder with configuration values equal to those for this exporter.toString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface io.opentelemetry.sdk.trace.export.SpanExporter
close
-
Method Details
-
getDefault
Returns a newOtlpHttpSpanExporterusing the default values.To load configuration values from environment variables and system properties, use opentelemetry-sdk-extension-autoconfigure.
- Returns:
- a new
OtlpHttpSpanExporterinstance.
-
builder
Returns a new builder instance for this exporter.- Returns:
- a new builder instance for this exporter.
-
toBuilder
Returns a builder with configuration values equal to those for this exporter.IMPORTANT: Be sure to
shutdown()this instance if it will no longer be used.- Since:
- 1.29.0
-
export
public io.opentelemetry.sdk.common.CompletableResultCode export(Collection<io.opentelemetry.sdk.trace.data.SpanData> spans) Submits all the given spans in a single batch to the OpenTelemetry collector.- Specified by:
exportin interfaceio.opentelemetry.sdk.trace.export.SpanExporter- Parameters:
spans- the list of sampled Spans to be exported.- Returns:
- the result of the operation
-
flush
public io.opentelemetry.sdk.common.CompletableResultCode flush()The OTLP exporter does not batch spans, so this method will immediately return with success.- Specified by:
flushin interfaceio.opentelemetry.sdk.trace.export.SpanExporter- Returns:
- always Success
-
shutdown
public io.opentelemetry.sdk.common.CompletableResultCode shutdown()Shutdown the exporter, releasing any resources and preventing subsequent exports.- Specified by:
shutdownin interfaceio.opentelemetry.sdk.trace.export.SpanExporter
-
toString
-