Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I'm looking for a tool for capturing the execution of an entire process tree, like this:
# tracetree: https://github.com/luser/tracetree , linux only, sadly $ tracetree /bin/bash -c '/bin/sleep 1; /bin/sleep 1' 16665 bash -c /bin/sleep 1; /bin/sleep 1 [2.004s] 16666 sleep 1 [1.001s] 16667 sleep 1 [1.000s]
Is there a tool for this?