I\'ve a java web application running on an Tomcat server(Linux). In the production environment I\'m facing some performance issue. At random intervals the jsvc process on which
You can get a stacktrace dump for all threads in any Java application by sending it a QUIT signal.
kill -QUIT [processId]
This will show up in the process' stdout.