`

php php-fpm - php-fpm status

    博客分类:
  • php
阅读更多
【基本介绍】
这里介绍php-fpm的status.可以查看php-fpm的进程相关的信息。

【基本配置】
php-fpm的配置文件,使用pm.status_pat=
; The URI to view the FPM status page. If this value is not set, no URI will be
; recognized as a status page. By default, the status page shows the following
; information:
;   accepted conn    - the number of request accepted by the pool;
;   pool             - the name of the pool;
;   process manager  - static or dynamic;
;   idle processes   - the number of idle processes;
;   active processes - the number of active processes;
;   total processes  - the number of idle + active processes.
; The values of 'idle processes', 'active processes' and 'total processes' are
; updated each second. The value of 'accepted conn' is updated in real time.
; Example output:
;   accepted conn:   12073
;   pool:             www
;   process manager:  static
;   idle processes:   35
;   active processes: 65
;   total processes:  100
; By default the status page output is formatted as text/plain. Passing either
; 'html' or 'json' as a query string will return the corresponding output
; syntax. Example:
;   http://www.foo.bar/status
;   http://www.foo.bar/status?json
;   http://www.foo.bar/status?html
; Note: The value must start with a leading slash (/). The value can be
;       anything, but it may not be a good idea to use the .php extension or it
;       may conflict with a real PHP file.
; Default Value: not set
pm.status_path = /fpm-status


在web服务中添加配置,
例如:nginx中添加location
location ~ ^/(status|ping)$ {
     access_log off;
     allow 127.0.0.1;
     allow 1.2.3.4#your-ip;
     deny all;
     include fastcgi_params;
     fastcgi_pass 127.0.0.1:9000;


【结果分析】
http://domain/fpm-status
pool:               www      #fpm池子名称,大多数为www
process manager:    dynamic #进程管理方式,值:static, dynamic or ondemand. dynamic
start time:   17/Nov/2014:22:59:48 +0800 #启动日期,如果reload了php-fpm,时间会更新
start since:          59509  # 运行时长
accepted conn:        115850  #当前池子接受的请求数
listen queue:         0  #请求等待队列,如果这个值不为0,那么要增加FPM的进程数量
max listen queue:     1 #请求等待队列最高的数量
listen queue len:     0  #socket等待队列长度
idle processes:       14  #空闲进程数量
active processes:     2  #活跃进程数量
total processes:      16  #总进程数量
max active processes: 9  #最大的活跃进程数量(FPM启动开始算)
max children reached: 0 #大道进程最大数量限制的次数,如果这个数量不为0,
                        #那说明你的最大进程数量太小了,请改大一点。
slow requests:        3   #启用了php-fpm slow-log,缓慢请求的数量


【其他参数】
php-fpm状态页比较个性化的一个地方是它可以带参数,可以带参数json、xml、html并且前面三个参数可以分别和full做一个组合。(见参考引用链接)

full详解
pid – 进程PID,可以单独kill这个进程. You can use this PID to kill a long running process.
state – 当前进程的状态 (Idle, Running, …)
start time – 进程启动的日期
start since – 当前进程运行时长
requests – 当前进程处理了多少个请求
request duration – 请求时长(微妙)
request method – 请求方法 (GET, POST, …)
request URI – 请求URI
content length – 请求内容长度 (仅用于 POST)
user – 用户 (PHP_AUTH_USER) (or ‘-’ 如果没设置)
script – PHP脚本 (or ‘-’ if not set)
last request cpu – 最后一个请求CPU使用率。
last request memorythe – 上一个请求使用的内存


【参考引用】
http://www.ttlsa.com/php/use-php-fpm-status-page-detail/
https://rtcamp.com/tutorials/php/fpm-status-page/
分享到:
评论

相关推荐

    PHP-FPM-status-Cacti:用于PHP-FPM状态页面的Cacti模板

    PHP-FPM-状态-仙人掌 用于PHP-FPM状态页面的Cacti模板。 基于curl的模板,而不是基于SNMP的模板。 ([屏幕截图]( “ PHP-FPM状态页面屏幕截图的仙人掌模板”)) PHP-FPM状态页面示例。 pool: www process ...

    PHP-FPM进程监控器.zip_PHP-FPM进程监控器

    1. **PHP-FPM Status Page**:这是PHP-FPM内置的监控页面,通过访问特定URL(例如`http://yourdomain.com/php-fpm-status`),可以查看当前FPM的状态信息,包括活动进程、慢日志请求等。 2. **Nginx Status Module*...

    PHP-FPM如何配置pm.status_path(解决方案).md

    PHP-FPM如何配置pm.status_path(解决方案).md

    php-fpm服务启动脚本的方法

    `start`命令用于启动PHP-FPM,`stop`命令优雅地关闭服务,`status`命令检查服务状态,而`force-quit`则用于强制终止服务。 为了使脚本在系统启动时生效,你需要执行以下步骤: 1. 使脚本可执行:`chmod +x /etc/...

    centos源码安装php-8.1.1+phpredis-4.2.0

    functions = passthru,exec,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server/g' /usr/local/...

    php-5.2.6 fpm配套包

    若需要监控和管理FPM进程,可以使用`service php-fpm status`查看状态,`service php-fpm restart`重启服务,`service php-fpm stop`停止服务。 4. **Web服务器集成**:要使FPM与Apache或Nginx等Web服务器协同工作...

    PHP-FPM实现性能优化

    1. **状态监控**:可以通过`pm.status_path`配置项设置的URL来查看PHP-FPM的状态,例如`http://yourdomain.com/php_status`。Nginx需要配置相应的访问权限。 2. **日志监控**:确保正确配置PHP-FPM的日志文件路径,...

    php-7.0.27.tar.gz

    编译 ./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/...启动: systemctl start php-fpm systemctl status php-fpm -l

    puppet-phpfpm:管理php-fpm守护程序和池配置

    --phpfpm 概述 该模块管理的php-fpm的守护进程,只有池。 管理php,php扩展名,pear,pecl,nginx,apache等不在本模块的范围之内。 该模块已经在Ubuntu,CentOS / RHEL,Archlinux和Amazon AMI上进行了测试。 ...

    php-5.6.29.tar.gz

    编译 ./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/...启动: systemctl start php-fpm systemctl status php-fpm -l

    php-7.1.29.tar.gz

    编译 ./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/...启动: systemctl start php-fpm systemctl status php-fpm -l

    php-7.3.0.tar.gz

    编译 ./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/...systemctl status php-fpm -l

    php-7.2.20.tar.gz

    编译 ./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/...启动: systemctl start php-fpm systemctl status php-fpm -l

    php-7.3.7.tar.gz

    编译 ./configure --prefix=/usr/local/php --exec-prefix=/usr/local/php --bindir=/usr/local/...启动: systemctl start php-fpm systemctl status php-fpm -l

    zabbix监控nginx、php-fpm、apache监控模版文件

    `Templates php-fpm status.xml`文件包含了监控PHP-FPM的配置,可以收集CPU和内存使用情况、进程状态、错误日志等数据,帮助你识别性能瓶颈和潜在的问题。 3. **Zabbix监控Apache**: Apache是另一个广泛应用的Web...

    img LNMP环境搭建(php-5.6.19 nginx-1.9.12 mysql-5.6.19)配置.docx

    7. 将PHP-FPM启动脚本复制到初始化目录:`cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm` 8. 设置启动文件权限:`chmod +x /etc/rc.d/init.d/php-fpm` 9. 添加到开机启动:`chkconfig --add php-fpm` 10. ...

    php-fpm开启状态统计的方法详解

    现在你可以通过访问 `http://your_server_domain/php-fpm_status` 来查看 PHP-FPM 的状态页面。例如,如果你的服务器 IP 是 `127.0.0.1`,则可以使用 `curl` 命令测试: ```bash $ curl 127.0.0.1/php-fpm_status `...

    Centos7安装php7.2.docx

    $ sudo systemctl status php72-php-fpm.service ``` nginx 配置文件 在 CentOS 7 中,nginx 配置文件路径为 `/etc/nginx/nginx.conf`。 nginx 默认项目路径 在 CentOS 7 中,nginx 默认项目路径为 `/usr/share/...

    Centos7重启apache、nginx、mysql、php-fpm命令方法

    4. 查看PHP-FPM状态:`systemctl status php-fpm` 值得注意的是,对于PHP-FPM,在旧版本的CentOS7中,可能还需要使用`/etc/init.d/php-fpm`脚本来进行管理,例如: 1. 启动PHP-FPM:`/etc/init.d/php-fpm start` 2...

Global site tag (gtag.js) - Google Analytics