Class OtlpHttpSpanExporterBuilder


  • public final class OtlpHttpSpanExporterBuilder
    extends java.lang.Object
    Builder utility for OtlpHttpSpanExporter.
    Since:
    1.5.0
    • Method Detail

      • setTimeout

        public OtlpHttpSpanExporterBuilder setTimeout​(long timeout,
                                                      java.util.concurrent.TimeUnit unit)
        Sets the maximum time to wait for the collector to process an exported batch of spans. If unset, defaults to 10Ls.
      • setTimeout

        public OtlpHttpSpanExporterBuilder setTimeout​(java.time.Duration timeout)
        Sets the maximum time to wait for the collector to process an exported batch of spans. If unset, defaults to 10Ls.
      • setConnectTimeout

        public OtlpHttpSpanExporterBuilder setConnectTimeout​(long timeout,
                                                             java.util.concurrent.TimeUnit unit)
        Sets the maximum time to wait for new connections to be established. If unset, defaults to 10Ls.
        Since:
        1.33.0
      • setConnectTimeout

        public OtlpHttpSpanExporterBuilder setConnectTimeout​(java.time.Duration timeout)
        Sets the maximum time to wait for new connections to be established. If unset, defaults to 10Ls.
        Since:
        1.33.0
      • setCompression

        public OtlpHttpSpanExporterBuilder setCompression​(java.lang.String compressionMethod)
        Sets the method used to compress payloads. If unset, compression is disabled. Compression method "gzip" and "none" are supported out of the box. Support for additional compression methods is available by implementing Compressor and CompressorProvider.
      • addHeader

        public OtlpHttpSpanExporterBuilder addHeader​(java.lang.String key,
                                                     java.lang.String value)
        Add a constant header to requests. If the key collides with another constant header name or a one from setHeaders(Supplier), the values from both are included.
      • setHeaders

        public OtlpHttpSpanExporterBuilder setHeaders​(java.util.function.Supplier<java.util.Map<java.lang.String,​java.lang.String>> headerSupplier)
        Set the supplier of headers to add to requests. If a key from the map collides with a constant from addHeader(String, String), the values from both are included.
        Since:
        1.33.0
      • setTrustedCertificates

        public OtlpHttpSpanExporterBuilder setTrustedCertificates​(byte[] trustedCertificatesPem)
        Sets the certificate chain to use for verifying servers when TLS is enabled. The byte[] should contain an X.509 certificate collection in PEM format. If not set, TLS connections will use the system default trusted certificates.
      • setClientTls

        public OtlpHttpSpanExporterBuilder setClientTls​(byte[] privateKeyPem,
                                                        byte[] certificatePem)
        Sets ths client key and the certificate chain to use for verifying client when TLS is enabled. The key must be PKCS8, and both must be in PEM format.
      • setSslContext

        public OtlpHttpSpanExporterBuilder setSslContext​(javax.net.ssl.SSLContext sslContext,
                                                         javax.net.ssl.X509TrustManager trustManager)
        Sets the "bring-your-own" SSLContext for use with TLS. Users should call this _or_ set raw certificate bytes, but not both.
        Since:
        1.26.0
      • build

        public OtlpHttpSpanExporter build()
        Constructs a new instance of the exporter based on the builder's values.
        Returns:
        a new exporter's instance