私はnginx+php-fpmを実行しています。各PHPプロセスが何をしているのかを知る方法はありますか?apacheのextendedmod_statusのようなもので、PIDxのapacheプロセスがURLyを処理していることがわかります。PHPプロセスがURLを知っているかどうかはわかりませんが、スクリプトのパスと名前を取得するだけで十分です。
質問する
41351 次
4 に答える
33
グーグルで何時間もかけてPHP.netのバグ追跡システムを閲覧した後、解決策を見つけました。PHP 5.3.8 または 5.3.9 以降で利用可能ですが、文書化されていないようです。機能リクエスト#54577full
に基づいて、ステータス ページは各ワーカーのステータスを個別に表示するオプションをサポートします。たとえば、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
于 2013-02-22T17:09:19.247 に答える
14
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;
}
于 2013-02-22T12:16:45.647 に答える
6
cgi コマンド ラインの方が便利です。
SCRIPT_NAME=/status \
SCRIPT_FILENAME=/status \
REQUEST_METHOD=GET \
cgi-fcgi -bind -connect 127.0.0.1:9000
于 2014-11-10T03:50:31.097 に答える