From 6bb124ead622b71abce05d58e731d2ea7fc96616 Mon Sep 17 00:00:00 2001
From: markt
From this link , you can view information about the server.
+ +First, you have the server and JVM version number, JVM provider, OS name +and number followed by the architecture type.
+ +Second, there is several information about the memory usage of the JVM +(available, total and max memory).
+ +Then, there is information about the Tomcat AJP and HTTP connectors. +The same information is available for both of them : +
+Threads information : Max threads, min and max spare threads, + current thread count and current thread busy.
Request information : Max processing time and processing time, + request and error count, bytes received and sent.
A table showing Stage, Time, Bytes Sent, Bytes Receive, Client, + VHost and Request. All existing threads are listed in the table. + Here is the list of the possible thread stages :
+"Parse and Prepare Request" : The request headers are + being parsed or the necessary preparation to read the request body (if + a transfer encoding has been specified) is taking place.
"Service" : The thread is processing a request and + generating the response. This stage follows the "Parse and Prepare + Request" stage and precedes the "Finishing" stage. There is always at + least one thread in this stage (the server-status page).
"Finishing" : The end of the request processing. Any + remainder of the response still in the output buffers is sent to the + client. This stage is followed by "Keep-Alive" if it is appropriate to + keep the connection alive or "Ready" if "Keep-Alive" is not + appropriate.
"Keep-Alive" : The thread keeps the connection open to + the client in case the client sends another request. If another request + is recieved, the next stage will br "Parse and Prepare Requst". If no + request is received before the keep alive times out, the connection will + be closed and the next stage will be "Ready".
"Ready" : The thread is at rest and ready to be + used.