HAProxy : 統計情報を参照する#22015/01/22 |
HAProxy サーバーの統計情報がコマンドで参照できるように設定します。
|
|
[1] | 必要なものをインストールしておきます。 |
# EPELからインストール [root@dlp ~]# yum --enablerepo=epel -y install socat
|
[2] | HAProxy の設定です。 |
[root@dlp ~]#
vi /etc/haproxy/haproxy.cfg # global セクションの中へ追記 global # UNIXソケットをバインド stats socket /var/lib/haproxy/stats /etc/rc.d/init.d/haproxy restart Stopping haproxy: [ OK ] Starting haproxy: [ OK ] |
[3] | 以上の設定の後、以下のようにして参照可能です。 |
# 現在の状態を表示 [root@dlp ~]# echo "show info" | socat /var/lib/haproxy/stats stdio
Name: HAProxy Version: 1.5.2 Release_date: 2014/07/12 Nbproc: 1 Process_num: 1 Pid: 1297 ... ... Idle_pct: 100 node: dlp.srv.world description: # 統計情報を CSV 形式で出力 [root@dlp ~]# echo "show stat" | socat /var/lib/haproxy/stats stdio
# pxname,svname,qcur,qmax,scur,smax,slim,stot,bin,bout,dreq,dresp,ereq,econ,eresp..... http-in,FRONTEND,,,0,1,2000,2,0,374,0,0,2,,,,,OPEN,,,,,,,,,1,2,0,,,,0,0,0,1,,,,0,0,0,2,0..... backend_servers,www01,0,0,0,0,,0,0,0,,0,,0,0,0,0,UP,1,1,0,0,0,574,0,,1,3,1,,0,,2,0,,0,L4O..... backend_servers,www02,0,0,0,0,,0,0,0,,0,,0,0,0,0,UP,1,1,0,0,0,574,0,,1,3,2,,0,,2,0,,0,L4O..... backend_servers,BACKEND,0,0,0,0,200,0,0,0,0,0,,0,0,0,0,UP,2,2,0,,0,574,0,,1,3,0,,0,,1,0..... # 現在のセッションを表示 [root@dlp ~]# echo "show sess" | socat /var/lib/haproxy/stats stdio
0x1759ff0: proto=unix_stream src=unix:1 fe=GLOBAL be=<NONE> srv=<none> ts=0b age=0s calls=1 rq[f=c08200h,i=0,an=00h,rx=10s,wx=,ax=] rp[f=008000h,i=0,an=00h,rx=,wx=,ax=] s0=[7,8h,fd=1,ex=] s1=[7,8h,fd=-1,ex=] exp= # その他の操作 # 対話モードに入る [root@dlp ~]# socat readline /var/lib/haproxy/stats
prompt # ヘルプを表示 > help Unknown command. Please enter one of the following commands only : clear counters : clear max statistics counters (add 'all' for all counters) clear table : remove an entry from a table help : this message prompt : toggle interactive mode with prompt quit : disconnect show info : report information about the running process show pools : report information about the memory pools usage show stat : report counters for each proxy and server show errors : report last request and response errors for each proxy show sess [id] : report the list of current sessions or dump this session show table [id]: report table usage stats or dump this table's contents get weight : report a server's current weight set weight : change a server's weight set server : change a server's state or weight set table [id] : update or create a table entry's data set timeout : change a timeout setting set maxconn : change a maxconn setting set rate-limit : change a rate limiting value disable : put a server or frontend in maintenance mode enable : re-enable a server or frontend which is in maintenance mode shutdown : kill a session or a frontend (eg:to release listening ports) show acl [id] : report avalaible acls or dump an acl's contents get acl : reports the patterns matching a sample for an ACL add acl : add acl entry del acl : delete acl entry clear acl <id> : clear the content of this acl show map [id] : report avalaible maps or dump a map's contents get map : reports the keys and values matching a sample for a map set map : modify map entry add map : add map entry del map : delete map entry clear map <id> : clear the content of this map set ssl <stmt> : set statement for ssl # 対話モードを終了する > quit |
Sponsored Link |