pid |
The system PID of the process. |
state |
The state of the process - Idle, Running, ... |
start time |
The date/time at which the process started. |
start since |
The number of seconds since the process started. |
requests |
The total number of requests served. |
request duration |
The total time in microseconds spent serving last request. |
request method |
The HTTP method of the last served request. |
request uri |
The URI of the last served request (after webserver processing, it may always be
/index.php if you use a front controller pattern redirect).
|
content length |
The length of the request body, in bytes, of the last request. |
user |
The HTTP user (PHP_AUTH_USER ) of the last request. |
script |
The full path of the script executed by the last request. This will be
'-' if not applicable (eg. status page requests).
|
last request cpu |
The %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.
The value can exceed 100%, because metric will tell which percentage of the total cpu time was used in the last request -
takes processes on all cores into account, whereas the 100% is for one core only.
|
last request memory |
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.
|