Interface OtlpExporterConfig.ProxyConfig

Enclosing interface:
OtlpExporterConfig

public static interface OtlpExporterConfig.ProxyConfig
  • Method Details

    • enabled

      @ConfigDocDefault("false") boolean enabled()
      If proxy connection must be used.

      There is a generic property, that will apply to all signals and a signal specific one, following the pattern: `quarkus.otel.exporter.otlp.<signal-type>.proxy-options.enabled` where <signal-type> is one of the supported signal types, like `traces` or `metrics`.

    • username

      Optional<String> username()
      Set proxy username.

      There is a generic property, that will apply to all signals and a signal specific one, following the pattern: `quarkus.otel.exporter.otlp.<signal-type>.proxy-options.username` where <signal-type> is one of the supported signal types, like `traces` or `metrics`.

    • password

      Optional<String> password()
      Set proxy password.

      There is a generic property, that will apply to all signals and a signal specific one, following the pattern: `quarkus.otel.exporter.otlp.<signal-type>.proxy-options.password` where <signal-type> is one of the supported signal types, like `traces` or `metrics`.

    • port

      OptionalInt port()
      Set proxy port.

      There is a generic property, that will apply to all signals and a signal specific one, following the pattern: `quarkus.otel.exporter.otlp.<signal-type>.proxy-options.port` where <signal-type> is one of the supported signal types, like `traces` or `metrics`.

    • host

      Optional<String> host()
      Set proxy host.

      There is a generic property, that will apply to all signals and a signal specific one, following the pattern: `quarkus.otel.exporter.otlp.<signal-type>.proxy-options.host` where <signal-type> is one of the supported signal types, like `traces` or `metrics`.