#1 Find the offending process id (_pid_)
ps -aux | grep job_name
#2 Look at the entire hierarchy of the pid and look at where it stops
pstree -pulna _pid_
#3 Look at the trace of the running program.
strace -t -s 22222 -p _pid_
#4 Look at the read/write IO activities
cat /proc/_pid_/io
Useful Links
http://www.linux-tutorial.info/modules.php?name=MContent&pageid=84
http://chadfowler.com/blog/2014/01/26/the-magic-of-strace/