Interface SentryProxyConfig


public interface SentryProxyConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Determine whether to enable a Proxy for all Sentry outbound requests.
    Sets the host name of the proxy server.
    Sets the password to authenticate on the proxy server
    Sets the port number of the proxy server
    Sets the username to authenticate on the proxy server
  • Method Details

    • enabled

      @WithDefault("false") boolean enabled()
      Determine whether to enable a Proxy for all Sentry outbound requests. This is also used for HTTPS requests.
    • host

      Optional<String> host()
      Sets the host name of the proxy server.
    • port

      Optional<Integer> port()
      Sets the port number of the proxy server
    • username

      Optional<String> username()
      Sets the username to authenticate on the proxy server
    • password

      Optional<String> password()
      Sets the password to authenticate on the proxy server