Uses of Class
io.opentelemetry.sdk.common.export.ProxyOptions
-
Packages that use ProxyOptions Package Description io.opentelemetry.exporter.internal.http io.opentelemetry.exporter.otlp.http.logs OpenTelemetry exporter which sends log data to OpenTelemetry collector via OTLP HTTP.io.opentelemetry.exporter.otlp.http.metrics OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP HTTP.io.opentelemetry.exporter.otlp.http.trace OpenTelemetry exporter which sends span data to OpenTelemetry collector via OTLP HTTP.io.opentelemetry.sdk.common.export Common utilities used by SDK exporters. -
-
Uses of ProxyOptions in io.opentelemetry.exporter.internal.http
Fields in io.opentelemetry.exporter.internal.http declared as ProxyOptions Modifier and Type Field Description private ProxyOptions
HttpExporterBuilder. proxyOptions
Methods in io.opentelemetry.exporter.internal.http with parameters of type ProxyOptions Modifier and Type Method Description HttpSender
HttpSenderProvider. createSender(java.lang.String endpoint, Compressor compressor, boolean exportAsJson, java.lang.String contentType, long timeoutNanos, long connectTimeout, java.util.function.Supplier<java.util.Map<java.lang.String,java.util.List<java.lang.String>>> headerSupplier, ProxyOptions proxyOptions, Authenticator authenticator, RetryPolicy retryPolicy, javax.net.ssl.SSLContext sslContext, javax.net.ssl.X509TrustManager trustManager)
Returns aHttpSender
configured with the provided parameters.HttpExporterBuilder<T>
HttpExporterBuilder. setProxyOptions(ProxyOptions proxyOptions)
-
Uses of ProxyOptions in io.opentelemetry.exporter.otlp.http.logs
Methods in io.opentelemetry.exporter.otlp.http.logs with parameters of type ProxyOptions Modifier and Type Method Description OtlpHttpLogRecordExporterBuilder
OtlpHttpLogRecordExporterBuilder. setProxyOptions(ProxyOptions proxyOptions)
Sets the proxy options. -
Uses of ProxyOptions in io.opentelemetry.exporter.otlp.http.metrics
Methods in io.opentelemetry.exporter.otlp.http.metrics with parameters of type ProxyOptions Modifier and Type Method Description OtlpHttpMetricExporterBuilder
OtlpHttpMetricExporterBuilder. setProxyOptions(ProxyOptions proxyOptions)
Sets the proxy options. -
Uses of ProxyOptions in io.opentelemetry.exporter.otlp.http.trace
Methods in io.opentelemetry.exporter.otlp.http.trace with parameters of type ProxyOptions Modifier and Type Method Description OtlpHttpSpanExporterBuilder
OtlpHttpSpanExporterBuilder. setProxy(ProxyOptions proxyOptions)
Sets the proxy options. -
Uses of ProxyOptions in io.opentelemetry.sdk.common.export
Methods in io.opentelemetry.sdk.common.export that return ProxyOptions Modifier and Type Method Description static ProxyOptions
ProxyOptions. create(java.net.InetSocketAddress socketAddress)
Create proxy options with aProxySelector
which always uses anProxy.Type.HTTP
proxy with thesocketAddress
.static ProxyOptions
ProxyOptions. create(java.net.ProxySelector proxySelector)
Create proxy options with theproxySelector
.
-