syncsnoop.bt(8) | System Manager's Manual | syncsnoop.bt(8) |
syncsnoop.bt - Trace the sync() variety of syscalls. Uses bpftrace/eBPF.
syncsnoop.bt
syncsnoop traces calls to sync() syscalls (sync(), fsync(), msync(), etc), which flushes file system cache and buffers to storage devices. These calls can cause performance perturbations, and it can be useful to know if they are happening, when they happen, and how frequently.
This works by tracing the sync() variety of syscalls via tracepoints.
This program is also a basic example of eBPF/bcc.
Since this uses BPF, only the root user can use this tool.
CONFIG_BPF and bpftrace.
This traces sync syscalls and prints output for each event. As the rate of this is generally expected to be low (<< 100/s), the overhead is also expected to be negligible.
This is from bpftrace.
Also look in the bpftrace distribution for a companion _examples.txt file containing example usage, output, and commentary for this tool.
This is a bpftrace version of the bcc tool of the same name.
Linux
Unstable - in development.
Brendan Gregg
2018-09-06 | USER COMMANDS |