←back to thread

166 points LelouBil | 1 comments | | HN request time: 0s | source
Show context
notepad0x90 ◴[] No.45088794[source]
does this provide telemetry not available with strace?

And is the output csv/logfile compatible with the windows equivalent? If so, that'd be amazing! tools like procdot can analyze/visualize the data:

https://procdot.com/

replies(1): >>45092642 #
xuhu ◴[] No.45092642[source]
This can trace all processes on the host while strace traces one PID and its descendants. And bpf tracing does not stop processes at each syscall, so they run without slowdowns.
replies(1): >>45095266 #
1. notepad0x90 ◴[] No.45095266[source]
I think auditd can trace all syscalls system wide and let you filter as well. But it is a daemon whereas this is a tool you can run and interact with.