Go library for interacting with HAProxys stats socket.
Initialize a client object. Supported address schemas are tcp://
and unix:///
client := &haproxy.HAProxyClient{
Addr: "tcp://localhost:9999",
}
Fetch results for a built in command(currently supports show stats
and show info
):
stats, err := client.Stats()
for _, i := range stats {
fmt.Printf("%s: %s\n", i.SvName, i.Status)
}
Or retrieve the result body from an arbitrary command string:
result, err := h.RunCommand("show info")
fmt.Println(result.String())