Recently I face an issue in my java application that is running in jboss eap 7.
All the process that are forked by my java application is hung and it's not running. When I debugged further, I found that the cpu is utilised completed by some process and there is no cpu for my java application. When I looked the sar report of the linux server I could see "iowait" is very high (around 96 % to 98 %)
Is there any way to find which process is consuming this much of iowait and is there any way I can log the output of (top, iotop, iostat) on daily basis to find the root cause until this issue resolves...?
Kindly suggest me to find the root cause, thanks in advance...