HAProxy own monitoring page

A configuration

frontend secure // a custom frontend, backend can be placed in listen or 
        bind *: 8888 // ip listening port number 
        stats enable // switch 
        stats uri / admin admin // access uri ip:? 8888 / admin? ADMIN 
        stats auth ADMIN: ADMIN // username and password 
        stats hide-version // hide HAProxy version 
        stats admin if TRUE // management interface, if the authentication is successful, the management node by webui 
        refresh 30s // automatic stats stats page refresh time 

source: https://blog.csdn.net/weixin_34038652/article/details/92787196

Guess you like

Origin www.cnblogs.com/gao88/p/12022999.html
own