Tuesday, 17 April 2012

Thread Analysis

grep "\- waiting on" filename | awk '{print $4;}'|sort | uniq -c

cat API_100_0417_1|grep java.lang.Thread.State| awk '{print $2;}'|sort | uniq -c



2 comments:

  1. cat filename|grep "\- waiting on" |awk '{print $4;}'|sort | uniq -c

    catfilename|grep "\- waiting to lock" |awk '{print $5;}'|sort | uniq -c

    ReplyDelete
    Replies
    1. cat THD_1|grep "\- parking to wait"|awk '{print $6;}'|sort | uniq -c

      Delete