Documentation ¶
Index ¶
- Variables
- type Config
- func (c *Config) InitBootstrapServers(bootstrapServersMapping []string) (err error)
- func (c *Config) InitDialAddressMappings(dialMappings []string) (err error)
- func (c *Config) InitExternalServers(externalServersMapping []string) (err error)
- func (c *Config) InitSASLCredentials() (err error)
- func (c *Config) Validate() error
- type DialAddressMapping
- type JaasCredentials
- type ListenerConfig
- type NetAddressMappingFunc
Constants ¶
This section is empty.
Variables ¶
View Source
var (
// Version is the current version of the app, generated at build time
Version = "unknown"
)
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Http struct { ListenAddress string MetricsPath string HealthPath string Disable bool } Debug struct { ListenAddress string DebugPath string Enabled bool } Log struct { Format string Level string LevelFieldName string TimeFiledName string MsgFiledName string } Proxy struct { DefaultListenerIP string BootstrapServers []ListenerConfig ExternalServers []ListenerConfig DialAddressMappings []DialAddressMapping DisableDynamicListeners bool DynamicAdvertisedListener string DynamicSequentialMinPort int RequestBufferSize int ResponseBufferSize int ListenerReadBufferSize int // SO_RCVBUF ListenerWriteBufferSize int // SO_SNDBUF ListenerKeepAlive time.Duration TLS struct { Enable bool ListenerCertFile string ListenerKeyFile string ListenerKeyPassword string CAChainCertFile string ListenerCipherSuites []string ListenerCurvePreferences []string ClientCert struct { ValidateSubject bool Subject struct { CommonName string Country []string Province []string Locality []string Organization []string OrganizationalUnit []string } } } } Auth struct { Local struct { Enable bool Command string Mechanism string Parameters []string LogLevel string Timeout time.Duration } Gateway struct { Client struct { Enable bool Method string Magic uint64 Command string Parameters []string LogLevel string Timeout time.Duration } Server struct { Enable bool Method string Magic uint64 Command string Parameters []string LogLevel string Timeout time.Duration } } } Kafka struct { ClientID string MaxOpenRequests int ForbiddenApiKeys []int DialTimeout time.Duration // How long to wait for the initial connection. WriteTimeout time.Duration // How long to wait for a request. ReadTimeout time.Duration // How long to wait for a response. KeepAlive time.Duration ConnectionReadBufferSize int // SO_RCVBUF ConnectionWriteBufferSize int // SO_SNDBUF TLS struct { Enable bool InsecureSkipVerify bool ClientCertFile string ClientKeyFile string ClientKeyPassword string CAChainCertFile string SameClientCertEnable bool } SASL struct { Enable bool Username string Password string JaasConfigFile string Method string Plugin struct { Enable bool Command string Mechanism string Parameters []string LogLevel string Timeout time.Duration } } Producer struct { Acks0Disabled bool } } ForwardProxy struct { Url string Scheme string Address string Username string Password string } }
func (*Config) InitBootstrapServers ¶
func (*Config) InitDialAddressMappings ¶ added in v0.1.5
func (*Config) InitExternalServers ¶
func (*Config) InitSASLCredentials ¶
type DialAddressMapping ¶ added in v0.1.5
type JaasCredentials ¶
func NewJaasCredentialFromFile ¶
func NewJaasCredentialFromFile(filename string) (*JaasCredentials, error)
func NewJaasCredentials ¶
func NewJaasCredentials(s string) (*JaasCredentials, error)
type ListenerConfig ¶
Click to show internal directories.
Click to hide internal directories.