iovisor / bcc

BCC - Tools for BPF-based Linux IO analysis, networking, monitoring, and more
Apache License 2.0
20.36k stars 3.86k forks source link

{libbpf-tools,tools}/vfsstat: Add unlink,mkdir,rmdir stat #4995

Closed Rtoax closed 4 months ago

Rtoax commented 4 months ago

The program counts OPEN and CREATE, so UNLINK statistics are very valuable. At the same time, statistics on folder creation and deletion are added.

Test MKDIR/RMDIR:

    $ while :; do mkdir a.dir && rmdir a.dir; done

Test UNLINK:

    $ while :; do touch a.out && rm a.out; done