Find out the number of connections to tomcat server

后端 未结 3 1590
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-03 10:55

I have a Java/Java EE web application deployed on Tomcat Server 5.5.17. I want to know the number of clients which are connected to the server. How can we find it out?

3条回答
  •  广开言路
    2021-02-03 11:08

    See the section under Tomcat Manager for an example of counting the sessions in a webapp.

    Counting the number of connections is probably a bit harder. Tomcat starts a new thread for each request coming in up to a maximum of maxProcessors. Beyond this number, the requests are queued up to a maximum of acceptCount. Requests beyond this number are refused/dropped (or crashes, I am not sure). The properties can be monitored using a JConsole: Steps here. The specific properties mentioned above are properties of the HTTP Connector.

    EDIT 1:

    After looking through source code of CoyoteConnector and AJP Connector, there is a private property called curProcessors which tracks the number of processors currently in use. However, adding the curProcessors variable to the mbeans file for connectors does not seem to display the current value in the JConsole display.

    Note: The mbeans XML file that I modified was in tomcat\server\lib\catalina.jar and is in the org\apache\catalina\connector directory in the jar. Below is an example of the entry I added:

    
    

提交回复
热议问题