Skip to content

Instantly share code, notes, and snippets.

@zavakid
Created September 20, 2014 11:47
Show Gist options
  • Save zavakid/33d89ebea59788142ae1 to your computer and use it in GitHub Desktop.
Save zavakid/33d89ebea59788142ae1 to your computer and use it in GitHub Desktop.
dump the thread stack which the most wasted of CPU
#!/bin/bash
if [ $# -eq 0 ];then
echo "please enter java pid"
exit -1
fi
pid=$1
jstack_cmd=""
if [[ $JAVA_HOME != "" ]]; then
jstack_cmd="$JAVA_HOME/bin/jstack"
else
r=`which jstack 2>/dev/null`
if [[ $r != "" ]]; then
jstack_cmd=$r
else
echo "can not find jstack"
exit -2
fi
fi
#line=`top -H -o %CPU -b -n 1 -p $pid | sed '1,/^$/d' | grep -v $pid | awk 'NR==2'`
line=`top -H -b -n 1 -p $pid | sed '1,/^$/d' | sed '1d;/^$/d' | grep -v $pid | sort -nrk9 | head -1`
echo "$line" | awk '{print "tid: "$1," cpu: %"$9}'
tid_0x=`printf "%0x" $(echo "$line" | awk '{print $1}')`
$jstack_cmd $pid | grep $tid_0x -A20 | sed -n '1,/^$/p'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment