We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See e.g. description at https://pchaigno.github.io/strace/2019/10/02/introducing-strace-seccomp-bpf.html#fnref:seccomp-ebpf
The text was updated successfully, but these errors were encountered:
Very basic demo of speed improvements in strace:
strace
qrilka@qdesktop ~ $ time strace -c -e openat head -1000000 /dev/urandom > /dev/null % time seconds usecs/call calls errors syscall ------ ----------- ----------- --------- --------- ---------------- 0,00 0,000000 0 12 5 openat ------ ----------- ----------- --------- --------- ---------------- 100.00 0,000000 12 5 total real 0m2,187s user 0m0,495s sys 0m1,838s qrilka@qdesktop ~ $ time strace -c --seccomp-bpf -e openat head -1000000 /dev/urandom > /dev/null strace: --seccomp-bpf implies -f % time seconds usecs/call calls errors syscall ------ ----------- ----------- --------- --------- ---------------- 0,00 0,000000 0 12 5 openat ------ ----------- ----------- --------- --------- ---------------- 100.00 0,000000 12 5 total real 0m1,130s user 0m0,212s sys 0m0,918s
Sorry, something went wrong.
Nice!
No branches or pull requests
See e.g. description at https://pchaigno.github.io/strace/2019/10/02/introducing-strace-seccomp-bpf.html#fnref:seccomp-ebpf
The text was updated successfully, but these errors were encountered: