monitorixにnginxのステータス追加

monitorixのgrapf enableのnginxステータス追加のスクリプトです。nginxっという変数名がmonitorix内に多々存在するので行自体を置換します。

if ['ps aux | grep nginx | grep -v grep | wc -l' -eq 0]
 echo "Graph of Nginx is not existed, because Nginx is not started" 
else
 sed -e 's/\tnginx\t\t=\sn/\tnginx\t\t= y/g' /etc/monitorix/monitorix.conf
fi