Uses of Class
io.opentelemetry.sdk.common.export.ProxyOptions
Packages that use ProxyOptions
Package
Description
OpenTelemetry exporter which sends log data to OpenTelemetry collector via OTLP HTTP.
OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP HTTP.
OpenTelemetry exporter which sends span data to OpenTelemetry collector via OTLP HTTP.
Common utilities used by SDK exporters.
-
Uses of ProxyOptions in io.opentelemetry.exporter.internal.http
Fields in io.opentelemetry.exporter.internal.http declared as ProxyOptionsMethods in io.opentelemetry.exporter.internal.http with parameters of type ProxyOptionsModifier and TypeMethodDescriptionHttpSenderProvider.createSender(String endpoint, Compressor compressor, boolean exportAsJson, String contentType, long timeoutNanos, long connectTimeout, Supplier<Map<String, List<String>>> headerSupplier, ProxyOptions proxyOptions, Authenticator authenticator, RetryPolicy retryPolicy, SSLContext sslContext, X509TrustManager trustManager) Returns aHttpSenderconfigured with the provided parameters.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 ProxyOptionsModifier and TypeMethodDescriptionOtlpHttpLogRecordExporterBuilder.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 ProxyOptionsModifier and TypeMethodDescriptionOtlpHttpMetricExporterBuilder.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 ProxyOptionsModifier and TypeMethodDescriptionOtlpHttpSpanExporterBuilder.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 ProxyOptionsModifier and TypeMethodDescriptionstatic ProxyOptionsProxyOptions.create(InetSocketAddress socketAddress) Create proxy options with aProxySelectorwhich always uses anProxy.Type.HTTPproxy with thesocketAddress.static ProxyOptionsProxyOptions.create(ProxySelector proxySelector) Create proxy options with theproxySelector.