Tagged Questions
3
votes
1answer
171 views
Plotting the sleep/wait chain of a process
I often want to know why a process in the middle of a pipeline is sleeping and not busy processing data. My current method is:
find the pid of interest
sudo strace -pt pid to get the blocking ...