Versions in this module Expand all Collapse all v0 v0.1.1 Jul 24, 2026 v0.1.0 Jul 23, 2026 v0.0.2 Jul 22, 2026 v0.0.1 Jul 22, 2026 Changes in this version + type Config struct + Address string + BusyTimeout time.Duration + Debug bool + ManagementAddress string + ManagementPort int + MaxConns int + Port int + StorageRoot string + WALMode bool + func DefaultConfig() Config + type FileConfig struct + Logging LoggingConfig + Management ManagementConfig + Server ServerConfig + Storage StorageConfig + func DefaultFileConfig() FileConfig + func LoadConfig(path string) (FileConfig, error) + func (fc FileConfig) ToConfig() Config + type LoggingConfig struct + Format string + Level string + type ManagementConfig struct + Address string + Port int + type Proxy struct + func New(config Config) (*Proxy, error) + func (p *Proxy) ManagementAddr() string + func (p *Proxy) MySQLAddr() string + func (p *Proxy) Start() error + func (p *Proxy) Stats() ProxyStats + func (p *Proxy) Stop() error + func (p *Proxy) Store() *storage.Store + type ProxyStats struct + ActiveSessions int + DBStats map[string]sql.DBStats + type ServerConfig struct + Address string + Port int + type StorageConfig struct + BusyTimeout int + MaxConnections int + Root string + WALMode bool