Unicornの監視
監視っつってもいろいろあるが、まずは最低限として、メモリ使用量を。
ついでにワーカープロセス数も同じ手順でできるのでこれも。
ここではmuninを利用してる前提とする。他の監視ツール使ってるところは・・・がんばって。
手順
こいつを使うので、clone
sudo su
cd
git clone --depth 1 https://github.com/munin-monitoring/contrib.git munin-contrib
unicornのプラグインは2セットあって、
-
unicorn_
-
ps | grep unicorn
って感じで計測するので、複数アプリが1サーバに相乗りしてる場合は合計になる
-
-
unicorn_memory_status
とunicorn_status
- ちとめんどいけど、アプリごとに集計できる
今回は後者使う。複数アプリ相乗り前提で。
インストール。
cp munin-contrib/plugins/unicorn/unicorn_{memory_,}status /usr/share/munin/plugins/
有効化。ここではmyapp
という名前のアプリのつもりでコマンド書くので、適宜書き換えを。
cd /etc/munin/plugins
ln -s /usr/share/munin/plugins/unicorn_memory_status unicorn_memory_status_myapp
ln -s /usr/share/munin/plugins/unicorn_status unicorn_status_myapp
設定。
vi /etc/munin/prugin-conf.d/unicorn
[unicorn_memory_status_myapp]
env.rails_root /path/to/myapp/current
[unicorn_status_myapp]
env.rails_root /path/to/myapp/current
もちろん各自のアプリケーションのパスを書くこと。Capistrano使ってるならcurrent
まで下る。
再起動。munin設定のあるある罠(再起動忘れ)はきちんと回避。
systemctl restart munin-node
あとがき
CPUの監視だれか
Author And Source
この問題について(Unicornの監視), 我々は、より多くの情報をここで見つけました https://qiita.com/nisshiee/items/5a631cece3724555969f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .