Remove rust.ord on enums
[hiphop-php.git] / hphp / doc / server.status
blob090ff4f8e5341edfbbb2834a398fd3bce5c9248b
2 <h2>Server Status</h2>
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]
9 The format is,
11   [process]
12      [id]
13      [build]
14      ...
15   [threads]
16      [thread]
17         [id]
18         [req]
19         ...
20      [thread]
21      ...
23 1. Process Status
25 - id: process ID
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
32 2. Thread Status
34 - id: thread ID
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