web-dev-qa-db-ja.com

PHP-FPMプロセスで実行されているスクリプトを特定する方法

Nginx + php-fpmを実行しています。 PHPプロセスのそれぞれが何をしているのかを知る方法はありますか?Apacheの拡張mod_statusのようなもので、PID xのApacheプロセスがURL yを処理していることがわかります。私はm PHPプロセスがURLを知っているかどうかは不明ですが、スクリプトのパスと名前を取得するだけで十分です。

22
Marki555

何時間かグーグルで作業し、PHP.netバグ追跡システムを閲覧した後、私は解決策を見つけました。 PHP 5.3.8または5.3.9から利用可能ですが、ドキュメント化されていないようです。機能のリクエスト #54577 に基づいて、ステータスページはオプションをサポートしていますfullは、各ワーカーのステータスを個別に表示するため、たとえば、URLはhttp://server.com/php-status?fullとサンプル出力は次のようになります。

pid:                  22816
state:                Idle
start time:           22/Feb/2013:15:03:42 +0100
start since:          10933
requests:             28352
request duration:     1392
request method:       GET
request URI:          /ad.php?zID=597
content length:       0
user:                 -
script:               /home/web/server.com/ad/ad.php
last request cpu:     718.39
last request memory:  1310720
27
Marki555

PHP-FPMにはステータスモニターが組み込まれていますが、mod_statusほど詳細ではありません。 php-fpm設定ファイルから/etc/php-fpm.d/www.conf(CentOS 6)

; 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 = /status

これを有効にすると、nginxからPHP-FPMのソケット/ポートへのパスを渡すことができ、ステータスページを表示できます。

nginx.conf:

location /status {

    include fastcgi_params;
    fastcgi_pass unix:/var/lib/php/php-fpm.sock;

}
11
sjdaws

cgiコマンドラインはより便利です:

SCRIPT_NAME=/status \
SCRIPT_FILENAME=/status \
REQUEST_METHOD=GET \
cgi-fcgi -bind -connect 127.0.0.1:9000
6
diyism