summaryrefslogtreecommitdiff
path: root/sapi/fpm/php-fpm.conf.in
diff options
context:
space:
mode:
authorJérôme Loyet <fat@php.net>2010-08-31 14:49:16 +0000
committerJérôme Loyet <fat@php.net>2010-08-31 14:49:16 +0000
commit4d62c8c5014b4ad72cfcd535dcfd1ab164fe8034 (patch)
treefd5cf48a3b2ab9b86e23a70a21c9e162ba6eaba3 /sapi/fpm/php-fpm.conf.in
parentd3670280f0861a48105751944d516937beb08dd6 (diff)
downloadphp-git-4d62c8c5014b4ad72cfcd535dcfd1ab164fe8034.tar.gz
- add 'max children reached' to the FPM status page. It shows how many times
a pool has reached the max_children parameter.
Diffstat (limited to 'sapi/fpm/php-fpm.conf.in')
-rw-r--r--sapi/fpm/php-fpm.conf.in28
1 files changed, 16 insertions, 12 deletions
diff --git a/sapi/fpm/php-fpm.conf.in b/sapi/fpm/php-fpm.conf.in
index d3bc7eacd7..ccf864a5e8 100644
--- a/sapi/fpm/php-fpm.conf.in
+++ b/sapi/fpm/php-fpm.conf.in
@@ -154,21 +154,25 @@ pm.max_children = 50
; 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.
+; 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.
+; max children reached - number of times, the process limit has been reached,
+; when pm tries to start more children (works only for
+; pm 'dynamic')
; 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
+; accepted conn: 12073
+; pool: www
+; process manager: static
+; idle processes: 35
+; active processes: 65
+; total processes: 100
+; max children reached: 1
; 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: