Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1 KB

README.md

File metadata and controls

35 lines (25 loc) · 1 KB

Thread Dumps Collector

Thread Dumps Collector is a simple shell scrpt tool, used to collect the Thread Dumps using either PID or CONTAINER_ID with compressed([tar|zip]) format.

Steps

The following are steps to use this tool:

Step1: Switch as the service user that started the process.

su - <service-user-who-started-the-process>

Step2: Download the thread_dumps_collector.sh script to any location (for example /tmp) and give the execute permission.

cd /tmp
wget https://raw.githubusercontent.com/rangareddy/thread-dumps-collector/main/thread_dumps_collector.sh
chmod +x thread_dumps_collector.sh

Step3: Run the following shell script by providing the container_id/process_id.

sh thread_dumps_collector.sh <container_id/process_id>

Thanks for using this tool. Please let me know is there any feedback.