How to trace a single process with sysdig
?
Something similar to strace /bin/ls
How to trace a single process with sysdig
?
Something similar to strace /bin/ls
sysdig proc.name=ls
sysdig doesn't have the concept of starting a child process, but you can instead use filters to reduce the output to include the events of a specific process.
Take a look at this page https://github.com/draios/sysdig/wiki/Sysdig%20User%20Guide#filtering for an overview of sysdig filters.