AlmaLinux9 HAProxyコマンドで統計情報を参照する

環境
AlmaLinux release 9.2 (Turquoise Kodkod)
HAProxy

概要
HAProxy サーバーの統計情報がコマンドで参照できるように設定します。

操作方法
1.必要なパッケージをインストールします。

# dnf -y install socat

2.HAProxy の設定を行います
# vi /etc/haproxy/haproxy.cfg

# [global] セクション内に以下の設定

stats socket /var/lib/haproxy/stats

再起動
# systemctl restart haproxy

2. 現在の状態を表示する
# echo “show info" | socat /var/lib/haproxy/stats stdio

3. 統計情報を CSV 形式で出力する

# echo "show stat" | socat /var/lib/haproxy/stats stdio

4.現在のセッションを表示する

# echo "show sess" | socat /var/lib/haproxy/stats stdio

 

AlmaLinux 9

Posted by arkgame