码迷,mamicode.com
首页 > 其他好文 > 详细

check mk 监控 nginx

时间:2018-02-08 10:17:39      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:lis   str   init   log   res   usr   配置   force   code   

1、查看nginx是否编译了status模块:
nginx -V 2>&1 | grep -o with-http_stub_status_module

2、添加nginx的检测脚本到被检测客户端:
cp nginx_status /usr/lib/check_mk_agent/plugins/

3、添加nginx配置:
vi /etc/nginx/conf.d/local.conf
添加:

server {
                listen       8065;
                server_name 127.0.0.1;
                location /nginx_status {
                stub_status on;
                access_log off;
                allow 127.0.0.1;
                deny all;
        }
        }

4、添加配置:
vi /etc/check_mk/nginx_status.cfg

servers = [
{
 ‘protocol‘ : ‘http‘,
 ‘address‘  : ‘localhost‘,
 ‘port‘     : 8065,
 ‘page‘     : ‘nginx_status‘,
},
]

4、reload并测试:
/etc/init.d/nginx force-reload
wget -qO - http://127.0.0.1:8065/nginx_status

check mk 监控 nginx

标签:lis   str   init   log   res   usr   配置   force   code   

原文地址:http://blog.51cto.com/backkom/2070066

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!