4 Server status displays current running status of server process and each worker
5 thread. To query status, hit admin port with a URL like this,
7 http://[server]:8088/status.[xml|json|html]
26 - build: current binary's build ID
27 - debug: DEBUG build or not
28 - now: current datetime
29 - start: when server was started
30 - up: server up time so far
35 - req: number of requests it has processed so far
36 - bytes: number of bytes it has written to response
37 - start: thread start time
38 - duration: how long this thread has been running
39 - mode: what this thread is doing
41 <b>idle</b> the thread is not processing any requests
42 <b>process</b> the thread is processing requests
43 <b>writing</b> the thread is sending response
44 <b>psp</b> the thread is doing post-sending processing
46 - iostatus: which I/O operation this thread is doing
47 - ioduration: how long this thread has been waiting for the I/O operation
48 - url: which URL this thread is serving
49 - client: client IP address
50 - vhost: virtual host the URL matched