The RequestServer (and its subclasses) expose a number of runtime statistics as read-only properties. You can examine these statistics through the Component Browser, or by calling the appropriate get methods:

runningHandlerCount

The number of handlers running, including both idle handlers and handlers currently handling requests. This should be the same as handlerCount, unless handlerCount is set to 0.

activeHandlerCount

The number of handlers currently handling requests.

handledRequestCount

The total number of requests that all handlers completed.

totalRequestHandlingTime

The total amount of time taken to complete all requests handled by all handlers. This adds time spent in parallel operations, so if 10 handlers running at the same time take 100msec each, the total handling time is 1000msec.

 
loading table of contents...