go-haproxy:Go库,用于通过命令套接字与HAProxy进行交互

时间:2024-06-12 22:07:11
【文件属性】:

文件名称:go-haproxy:Go库,用于通过命令套接字与HAProxy进行交互

文件大小:8KB

文件格式:ZIP

更新时间:2024-06-12 22:07:11

Go

正丙氧基 Go库,用于与HAProxys stats套接字进行交互。 用法 初始化客户端对象。 支持的地址模式为tcp://和unix:/// client := & haproxy. HAProxyClient { Addr : "tcp://localhost:9999" , } 获取内置命令的结果(当前支持show stats和show info ): stats , err := client . Stats () for _ , i := range stats { fmt . Printf ( "%s: %s \n " , i . SvName , i . Status ) } 或从任意命令字符串中检索结果主体: result , err := h . RunCommand ( "show info" ) fmt . Println ( result .


网友评论