Reputation: 2707
How to trace a single process with sysdig
?
Something similar to strace /bin/ls
Upvotes: 1
Views: 606
Reputation: 71
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.
Upvotes: 1