Scroll to navigation

stackcount(8) System Manager's Manual stackcount(8)

NAME

stackcount - Count function calls and their stack traces. Uses Linux eBPF/bcc.

SYNOPSIS

stackcount [-h] [-p PID] [-c CPU] [-i INTERVAL] [-D DURATION] [-T]
[-r] [-s] [-P] [-K] [-U] [-v] [-d] [-f] [--debug] pattern

DESCRIPTION

stackcount traces functions and frequency counts them with their entire stack trace, kernel stack and user stack, summarized in-kernel for efficiency. This allows higher frequency events to be studied. The output consists of unique stack traces, and their occurrence counts. In addition to kernel and user functions, kernel tracepoints and USDT tracepoint are also supported.

The pattern is a string with optional '*' wildcards, similar to file globbing. If you'd prefer to use regular expressions, use the -r option.

This tool only works on Linux 4.6+. Stack traces are obtained using the new `BPF_STACK_TRACE` APIs. For kernels older than 4.6, see the version under tools/old.

REQUIREMENTS

CONFIG_BPF and bcc.

OPTIONS

Print usage message.
Allow regular expressions for the search pattern. The default allows "*" wildcards only.
Show address offsets.
Display stacks separately for each process.
Show kernel stack only.
Show user stack only.
Include a timestamp with interval output.
Show raw addresses.
Print a delimiter ("--") in-between the kernel and user stacks.
Print the source of the BPF program when loading it (for debugging purposes).
Summary interval, in seconds.
Total duration of trace, in seconds. -f Folded output format.
Trace this process ID only (filtered in-kernel).
Trace this CPU only (filtered in-kernel).
A function name, or a search pattern. Can include wildcards ("*"). If the -r option is used, can include regular expressions.

EXAMPLES

# stackcount submit_bio
# stackcount -d submit_bio
# stackcount -K submit_bio
# stackcount -U submit_bio
# stackcount ip_output
# stackcount -s ip_output
# stackcount -sv ip_output
# stackcount 'tcp_send*'
# stackcount -r '^tcp_send.*'
# stackcount -Ti 5 ip_output
# stackcount -p 185 ip_output
# stackcount -c 1 put_prev_entity
# stackcount -p 185 c:malloc
# stackcount -p 185 u:pthread:pthread_create
# stackcount t:sched:sched_switch

OVERHEAD

This summarizes unique stack traces in-kernel for efficiency, allowing it to trace a higher rate of function calls than methods that post-process in user space. The stack trace data is only copied to user space when the output is printed, which usually only happens once. The stack walking also happens in an optimized code path in the kernel thanks to the new BPF_STACK_TRACE table APIs, which should be more efficient than the manual walker in the eBPF tracer which older versions of this script used. With this in mind, call rates of < 10,000/sec would incur negligible overhead. Test before production use. You can also use funccount to get a handle on function call rates first.

SOURCE

This is from bcc.

https://github.com/iovisor/bcc

Also look in the bcc distribution for a companion _examples.txt file containing example usage, output, and commentary for this tool.

OS

Linux

STABILITY

Unstable - in development.

AUTHOR

Brendan Gregg, Sasha Goldshtein

SEE ALSO

stacksnoop(8), funccount(8)

2016-01-14 USER COMMANDS