Tomcat Processing Time

in the server manager in

http://localhost:8080/manager/status 

I see

 Max processing time: 4069 ms Processing time: 108.345 s 

I can’t understand what this time is telling me? I apologize. I understand that this is a very simple question, so kindly point me to a resource where I can get basic Tomcat knowledge such as this. thanks

+4
source share
1 answer

The maximum processing time is the maximum time that may be required to process a single request by a servlet.

Processing time is the total time taken to process all requests by the servlet.

As for the resource, you can learn about Tomcat metrics, try the following: Apache Tomcat metrics

+3
source

All Articles