devxlogo

Obtaining a Thread Dump of Your Java App in Linux

Obtaining a Thread Dump of Your Java App in Linux

Thread dump is a mechanism to view the various threads active in your application and also to know the current methods that they are active on. The result may not be the same every time you take a thread dump as the state can be different at different intervals.

In Linux, we have the command kill -3 , which will yield a whole lot of details and it is for you to analyze. The following code can run for some time, thereby helping you to trigger a thread dump.

public class LongFile{   public static void main(String args[])   {      LongFile longFile = new LongFile();      longFile.proceed();   }   private void proceed()   {      for(int i=0; i       {         if (i % 100 == 0)         {            try{            //Trying to make a small sleep to enable you to take the thread dump               Thread.sleep(1000);            }catch(InterruptedException ie)            {               System.out.println("InterruptedException: "+ ie);            }            System.out.println("i: " + i);         }      }   }} 
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist