zabbix监控phpfpm_status-创新互联
zabbix 监控phpfpm_status
创新互联建站主要从事成都网站制作、成都网站设计、外贸营销网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务河津,10年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:028-869222201. 启用php-fpm状态功能
# cat /usr/local/php-5.5.10/etc/php-fpm.conf | grep status_path pm.status_path = /status ###打开上面的内容即可默认情况下为/status,当然也可以改成其他的,例如/php_status等等
2. nginx配置
在默认主机里面加上location或者你希望能访问到的主机里面
server { listen *:80 default_server; server_name _; location ~ ^/(status|ping)$ { include fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $fastcgi_script_name; } }3. 重启nginx/php-fpm
请依照你的环境重启你的nginx和php-fpm
4. 测试打开status页面
# curl http://127.0.0.1/status pool: www process manager: dynamic start time: 08/Sep/2016:16:15:12 +0800 start since: 4313 accepted conn: 1783 listen queue: 0 max listen queue: 0 listen queue len: 128 idle processes: 29 active processes: 1 total processes: 30 max active processes: 3 max children reached: 0 slow requests: 05. php-fpm status详解
pool – fpm池子名称,大多数为www
process manager – 进程管理方式,值:static, dynamic or ondemand. dynamic
start time – 启动日期,如果reload了php-fpm,时间会更新
start since – 运行时长
accepted conn – 当前池子接受的请求数
listen queue – 请求等待队列,如果这个值不为0,那么要增加FPM的进程数量
max listen queue – 请求等待队列高的数量
listen queue len – socket等待队列长度
idle processes – 空闲进程数量
active processes – 活跃进程数量
total processes – 总进程数量
max active processes – 大的活跃进程数量(FPM启动开始算)
max children reached - 大道进程大数量限制的次数,如果这个数量不为0,那说明你的大进程数量太小了,请改大一点。
slow requests – 启用了php-fpm slow-log,缓慢请求的数量
php-fpm的监控相关信息可以参考:http://www.ttlsa.com/php/use-php-fpm-status-page-detail/
6. 编写脚本监控php-fpm
[root@iZ23qinwbndZ etc]# cat script/zabbix_linux_php.sh #!/bin/bash ############################################################ # $Name: zabbix_linux_php.sh # $Version: v1.0 # $Function: zabbix plugins # $Author: GAOGD # $organization: http://lvnian.blog.51cto.com/ # $Create Date: 20160908 # $Description: Monitor Linux Service Status ############################################################ php_status_fun(){ case $1 in accepted_conn) /usr/bin/curl -s "http://127.0.0.1"/status |grep '^accepted conn' |awk '{print $NF}' ;; listen_queue) /usr/bin/curl -s "http://127.0.0.1"/status |grep '^listen queue:' |awk '{print $NF}' ;; listen_queue_len) /usr/bin/curl -s "http://127.0.0.1"/status |grep '^listen queue len' |awk '{print $NF}' ;; idle_processes) /usr/bin/curl -s "http://127.0.0.1"/status |grep '^idle processes' |awk '{print $NF}' ;; active_processe) /usr/bin/curl -s "http://127.0.0.1"/status |grep '^active processes' |awk '{print $NF}' ;; total_processes) /usr/bin/curl -s "http://127.0.0.1"/status |grep '^total processes' |awk '{print $NF}' ;; slow_requests) /usr/bin/curl -s "http://127.0.0.1"/status |grep '^slow requests' |awk '{print $NF}' ;; esac } php_status_fun $1 [root@iZ23qinwbndZ etc]#7.把脚本应用到zabbix客户端
[root@iZ23qinwbndZ etc]# tail -4 zabbix_agentd.conf UserParameter=nginx_status[*],/etc/zabbix/etc/script/zabbix_linux_plugin.sh nginx_status $1 UserParameter=php_status[*],/etc/zabbix/etc/script/zabbix_linux_php.sh $1 UserParameter=CheckMem,free -m |awk '/Mem/{print $4}' [root@iZ23qinwbndZ etc]#8.重启zabbix客户端
9.zabbix web界面添加对应的监控模块
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
名称栏目:zabbix监控phpfpm_status-创新互联
路径分享:http://ybzwz.com/article/codisi.html