You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"# HELP phpfpm_max_active_processes The maximum number of active processes since FPM has started.\n"
422
417
"# TYPE phpfpm_max_active_processes counter\n"
423
-
"phpfpm_max_active_processes %d\n"
418
+
"phpfpm_max_active_processes{pool=\"%s\"} %d\n"
424
419
"# HELP phpfpm_max_children_reached The number of times, the process limit has been reached, when pm tries to start more children (works only for pm 'dynamic' and 'ondemand').\n"
425
420
"# TYPE phpfpm_max_children_reached counter\n"
426
-
"phpfpm_max_children_reached %u\n"
427
-
"# HELP phpfpm_slow_requests The number of requests that exceeded your 'request_slowlog_timeout' value.\n"
428
-
"# TYPE phpfpm_slow_requests counter\n"
429
-
"phpfpm_slow_requests %lu\n";
421
+
"phpfpm_max_children_reached{pool=\"%s\"} %u\n"
422
+
"# HELP phpfpm_slow_requests_total The number of requests that exceeded your 'request_slowlog_timeout' value.\n"
423
+
"# TYPE phpfpm_slow_requests_total counter\n"
424
+
"phpfpm_slow_requests_total{pool=\"%s\"} %lu\n";
430
425
431
426
has_start_time=0;
432
427
if (!full) {
@@ -435,31 +430,34 @@ int fpm_status_handle_request(void) /* {{{ */
435
430
full_separator="";
436
431
full_pre="";
437
432
full_syntax=
433
+
"# HELP phpfpm_process_pid The id of the process.\n"
"# HELP phpfpm_process_request_cpu The percentage of cpu of the last request. This will be 0 if the process is not Idle because the calculation is done when the request processing is complete.\n"
"# HELP phpfpm_process_request_memory_bytes The maximum amount of memory consumed by the last request. This will be 0 if the process is not Idle because the calculation is done when the request processing is complete.\n"
456
454
"# TYPE phpfpm_process_request_memory_bytes gauge\n"
457
455
"# UNIT phpfpm_process_request_memory_bytes bytes\n"
"# HELP phpfpm_max_children_reached The number of times, the process limit has been reached, when pm tries to start more children \(works only for pm 'dynamic' and 'ondemand'\)\.\n" .
264
260
"# TYPE phpfpm_max_children_reached counter\n" .
265
-
"phpfpm_max_children_reached " . $fields['max children reached'] . "\n" .
266
-
"# HELP phpfpm_slow_requests The number of requests that exceeded your 'request_slowlog_timeout' value\.\n" .
0 commit comments