linux怎么监控php-fpm,开启nginx和php-fpm的status状态监控

本文基于ubuntu16.04 php7.0

最近服务器的PHP-fpm进程偶尔会异常飙升,于是想在zabbix上配置监控服务器的nginx和php-fpm的状态。前提是需要开启nginx和php-fpm的status功能。

启用nginx status配置

配置server,一般我们在默认的主机下配置:

server {

#listen 80;

listen 80 default_server;

root /var/www/html;

index index.php index.html index.htm;

server_name 127.0.0.1;

location ~ \.php$ {

include snippets/fastcgi-php.conf;

fastcgi_pass unix:/run/php/php7.0-fpm.sock;

}

location /ngx_status {

allow 127.0.0.1;

deny all;

stub_status on;

access_log off;

}

}

重启nginx,测试访问

sudo /etc/init.d/nginx retart

curl http://127.0.0.1/ngx_status

5ec6efab48128bccb4a46280bfe40fb8.png

nginx status 参数说明

active connections – 活跃的连接数量

server accepts handled requests — 总共处理了4个连接 , 成功创建4次握手, 总共处理了4个请求

reading — 读取客户端的连接数.

writing — 响应数据到客户端的数量

waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接.

启用 php-fpm status 配置

修改php-fpm配置,将 status 打开

vim /etc/php/7.0/fpm/pool.d/www.conf

pm.status_path = /fpm_status

配置 server

server {

#listen 80;

listen 80 default_server;

root /var/www/html;

index index.php index.html index.htm;

server_name 127.0.0.1;

location ~ \.php$ {

include snippets/fastcgi-php.conf;

fastcgi_pass unix:/run/php/php7.0-fpm.sock;

}

location ~ /fpm_status$ {

allow 127.0.0.1;

deny all;

fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;

include fastcgi_params;

fastcgi_pass unix:/run/php/php7.0-fpm.sock;

}

}

重启 php-fpm 和 nginx,测试访问

curl http://127.0.0.1/fpm_status

1e5f0f605177e4097c93a254acede2f0.png

php-fpm 参数说明

pool #fpm池名称,大多数为www

process manager #进程管理方式dynamic或者static

start time #启动日志,如果reload了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,那说明你的最大进程数量过小,可以适当调整。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值