Home
last modified time | relevance | path

Searched full:filetop (Results 1 – 14 of 14) sorted by relevance

/external/bcc/tools/
Dfiletop_example.txt1 Demonstrations of filetop, the Linux eBPF/bcc version.
4 filetop shows reads and writes by file, with process details. For example:
6 # ./filetop -C
61 # ./filetop -Cr 5
97 # ./filetop -Cr 5 -a 1 3
135 # ./filetop -h
136 usage: filetop.py [-h] [-a] [-C] [-r MAXROWS] [-p PID] [interval] [count]
155 ./filetop # file I/O top, 1 second refresh
156 ./filetop -C # don't clear the screen
157 ./filetop -p 181 # PID 181 only
[all …]
Dfiletop.py4 # filetop file reads and writes by process.
7 # USAGE: filetop.py [-h] [-C] [-r MAXROWS] [interval] [count]
24 ./filetop # file I/O top, 1 second refresh
25 ./filetop -C # don't clear the screen
26 ./filetop -p 181 # PID 181 only
27 ./filetop 5 # 5 second summaries
28 ./filetop 5 10 # 5 second summaries, 10 times only
Ddirtop.py14 # 13-Mar-2020 Erwan Velu Created dirtop from filetop
15 # 06-Feb-2016 Brendan Gregg Created filetop.
/external/bcc/man/man8/
Dfiletop.81 .TH filetop 8 "2016-02-08" "USER COMMANDS"
3 filetop \- File reads and writes by filename and process. Top for files.
5 .B filetop [\-h] [\-a] [\-C] [\-r MAXROWS] [\-s {reads,writes,rbytes,wbytes}] [\-p PID] [interval] …
59 .B filetop
63 .B filetop -Cr 8
67 .B filetop 5 10
Ddirtop.8113 filetop(8) by Brendan Gregg
/external/bcc/libbpf-tools/
Dfiletop.c4 * filetop Trace file reads/writes by process.
7 * Based on filetop(8) from BCC by Brendan Gregg.
21 #include "filetop.h"
22 #include "filetop.skel.h"
48 const char *argp_program_version = "filetop 0.1";
54 "USAGE: filetop [-h] [-p PID] [interval] [count]\n"
57 " filetop # file I/O top, refresh every 1s\n"
58 " filetop -p 1216 # only trace PID 1216\n"
59 " filetop 5 10 # 5s summaries, 10 times\n";
DAndroid.bp227 name: "filetop.bpf.o",
228 srcs: ["filetop.bpf.c"],
233 name: "filetop.skel.h",
234 srcs: [":filetop.bpf.o"],
235 out: ["filetop.skel.h"],
240 name: "filetop",
241 srcs: ["filetop.c"],
242 generated_headers: ["filetop.skel.h"],
D.gitignore23 /filetop
Dfiletop.bpf.c7 #include "filetop.h"
DMakefile55 filetop \
/external/bcc/snap/
Dsnapcraft.yaml165 filetop:
166 command: bcc-wrapper filetop
/external/bcc/
DREADME.md119 - tools/[filetop](tools/filetop.py): File reads and writes by filename and process. Top for files. …
/external/bcc/debian/
Dchangelog94 * new libbpf-tools: filetop, exitsnoop, tcprtt
/external/bcc/tests/python/
Dtest_tools_smoke.py188 self.run_with_duration("filetop.py 1 1")