Finding out how many requests a web application currently has

JIRA Documentation

Index

If you want to get an indication of how many requests your web application (e.g. JIRA, Confluence) currently has, and it is running on Unix, run the following command:

netstat -a -n | grep :<port number> | grep tcp | grep ESTABLISHED | wc -l

For example, if the application server has JIRA (or Confluence) running on port 8080:

netstat -a -n | grep :8080 | grep tcp | grep ESTABLISHED | wc -l

This will return the number of established TCP/IP connections to that port.

Labels:

Enter labels to add to this page:
Wait Image 
Looking for a label? Just start typing.
  1. May 24, 2007

    Ian Daniel [Atlassian] says:

    If are running Tomcat, you can obtain information for each web application, by u...

    If are running Tomcat, you can obtain information for each web application, by using the Tomcat manager web application. It can provide session statistics.

    However, the manager application might not be running on your Tomcat installation, and in fact, JIRA Standalone ships with the manager application removed.