Lines Matching full:funccount
4 # funccount Count functions, tracepoints, and USDT probes.
7 # USAGE: funccount [-h] [-p PID] [-i INTERVAL] [-d DURATION] [-T] [-r]
221 ./funccount 'vfs_*' # count kernel fns starting with "vfs"
222 ./funccount -r '^vfs.*' # same as above, using regular expressions
223 ./funccount -Ti 5 'vfs_*' # output every 5 seconds, with timestamps
224 ./funccount -d 10 'vfs_*' # trace for 10 seconds only
225 ./funccount -p 185 'vfs_*' # count vfs calls for PID 181 only
226 ./funccount t:sched:sched_fork # count calls to the sched_fork tracepoint
227 ./funccount -p 185 u:node:gc* # count all GC USDT probes in node, PID 185
228 ./funccount c:malloc # count all malloc() calls in libc
229 ./funccount go:os.* # count all "os.*" calls in libgo
230 ./funccount -p 185 go:os.* # count all "os.*" calls in libgo, PID 185
231 ./funccount ./test:read* # count "read*" calls in the ./test binary
232 ./funccount -c 1 'vfs_*' # count vfs calls on CPU 1 only