Thread Dump


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Thread Dump
# 1  
Old 12-29-2011
Java Thread Dump

I used take thread dump when our application gets out of memory issue.

can any one help on check thread dump result.
where it will save tool to read thread dump.Smilie

Code:
date; kill -3 process_id; sleep 300; kill -3 process_id; sleep 300; kill -3 process_id;date

# 2  
Old 12-30-2011
Not clear enough...
Help us to help you...

--ahamed
# 3  
Old 12-30-2011
i want to view thread dump log.
# 4  
Old 12-30-2011
where is it that you are dumping?

--ahamed
# 5  
Old 01-02-2012
Java Thread dump

its getting stored in following file.
/opt/test/logs/Catiline.log.

Code:
"main" prio=5 tid=0x00000000500444f0 nid=6443 runnable 
"VM Thread" prio=5 tid=0x00000000500cabd0 nid=6449 runnable 

"VM Periodic Task Thread" prio=5 tid=0x00000000500d9890 nid=6473 waiting on condition 
"Suspend Checker Thread" prio=5 tid=0x00000000500d2e20 nid=6467 runnable


Last edited by fpmurphy; 01-03-2012 at 11:29 AM.. Reason: added code tags
# 6  
Old 01-03-2012
So, what is stopping you from viewing it? Or did you mean that you want to see as and when it happens?
Use tail in that case
Code:
tail -f /opt/test/logs/Catiline.log

If not, tell us more!

--ahamed
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Linux

Thread specific data from linux core dump

How do i get pointer to thread's local storage or thread specific data while analyzing core dump for linux ? i use pthread_setspecific to store some data in the pthread's local stoare. my multi threaded program on linux crashed, and i want to see what is stored in current running thread's... (2 Replies)
Discussion started by: vishwasungal
2 Replies

2. Solaris

Thread Dump not working

Hello, I'm running a kill -QUIT on few process IDs (OS: Solaris) but the Thread Dump is empty. Can you please help me get it back on? Since I'm quite new to this, I'm not aware of the checks. Please let me know for the info required to debug this issue. Thanks! (3 Replies)
Discussion started by: DevendraG
3 Replies

3. Programming

Thread prog (core dump)

Could any one please suggest me how to solve this...... when I compiled the program and tried to execute it as follows, it works fine under different inputs like: ./main -r 300 -w 3 -s 100 ./main -r 600 -w 3 -s 1000 ./main -r 10 -w 3 -s 100 But it fails when I tired to give the input as... (1 Reply)
Discussion started by: kumars
1 Replies

4. Programming

How to cancel a thread safely from the initial thread?

how about asynchronous canceling? or with signal? if with signal whether it effects the process? my english so badly :( :( (1 Reply)
Discussion started by: alan.zhao
1 Replies

5. UNIX for Dummies Questions & Answers

help, what is the difference between core dump and panic dump?

help, what is the difference between core dump and panic dump? (1 Reply)
Discussion started by: aileen
1 Replies
Login or Register to Ask a Question