logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

bitesize.bt - Show disk I/O size as a histogram. Uses bpftrace/eBPF.

Author

       Brendan Gregg

Description

       This can be used to characterize the distribution of block device (disk) I/O sizes. To study block device
       I/O in more detail, see biosnoop.bt(8).

       This uses the tracepoint:block:block_rq_issue tracepoint, and is a simple example of bpftrace.

       Since this uses BPF, only the root user can use this tool.

Examples

       Trace block I/O and summarize as a histogram by process:
              # bitesize.bt

Fields

       0th    A process name (shown in "@[...]") is printed before each I/O histogram.

       1st, 2nd
              This is a range of I/O sizes, in Kbytes (shown in "[...)" set notation).

       3rd    A column showing the count of I/O in this range.

       4th    This is an ASCII histogram representing the count column.

Name

       bitesize.bt - Show disk I/O size as a histogram. Uses bpftrace/eBPF.

Os

       Linux

Overhead

       Since block device I/O usually has a relatively low frequency (< 10,000/s), the overhead for this tool is
       expected to be low or negligible. For high IOPS storage systems, test and quantify before use.

Requirements

       CONFIG_BPF and bpftrace.

See Also

biosnoop.bt(8)

USER COMMANDS                                      2018-09-07                                     bitesize.bt(8)

Source

       This is from bpftrace.

              https://github.com/bpftrace/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.

              https://github.com/iovisor/bcc

Stability

       Unstable - in development.

Synopsis

bitesize.bt

See Also