Lines Matching full:stackcount
3 # stackcount Count events and their stack traces.
6 # USAGE: stackcount.py [-h] [-p PID] [-c CPU] [-i INTERVAL] [-D DURATION] [-T]
209 ./stackcount submit_bio # count kernel stack traces for submit_bio
210 ./stackcount -d ip_output # include a user/kernel stack delimiter
211 ./stackcount -s ip_output # show symbol offsets
212 ./stackcount -sv ip_output # show offsets and raw addresses (verbose)
213 ./stackcount 'tcp_send*' # count stacks for funcs matching tcp_send*
214 ./stackcount -r '^tcp_send.*' # same as above, using regular expressions
215 ./stackcount -Ti 5 ip_output # output every 5 seconds, with timestamps
216 ./stackcount -p 185 ip_output # count ip_output stacks for PID 185 only
217 ./stackcount -c 1 put_prev_entity # count put_prev_entity stacks for CPU 1 only
218 ./stackcount -p 185 c:malloc # count stacks for malloc in PID 185
219 ./stackcount t:sched:sched_fork # count stacks for sched_fork tracepoint
220 ./stackcount -p 185 u:node:* # count stacks for all USDT probes in node
221 ./stackcount -K t:sched:sched_switch # kernel stacks only
222 ./stackcount -U t:sched:sched_switch # user stacks only