blob: 3d845334f218bd9e4c479f2b3019ca23d4bb30d8 [file] [log] [blame] [view]
Suchakra Sharmac4970562015-08-03 19:22:22 -04001![BCC Logo](images/logo2.png)
Brendenc3c4fc12015-05-03 08:33:53 -07002# BPF Compiler Collection (BCC)
3
Brendan Gregg493fd622015-09-10 14:46:52 -07004BCC is a toolkit for creating efficient kernel tracing and manipulation
Brendan Gregg239e8632016-07-25 15:02:32 -07005programs, and includes several useful tools and examples. It makes use of
6extended BPF (Berkeley Packet Filters), formally known as eBPF, a new feature
7that was first added to Linux 3.15. Much of what BCC uses requires Linux 4.1
8and above.
Brendenc3c4fc12015-05-03 08:33:53 -07009
Brendan Gregg493fd622015-09-10 14:46:52 -070010eBPF was [described by](https://lkml.org/lkml/2015/4/14/232) Ingo Molnár as:
11
12> One of the more interesting features in this cycle is the ability to attach eBPF programs (user-defined, sandboxed bytecode executed by the kernel) to kprobes. This allows user-defined instrumentation on a live kernel image that can never crash, hang or interfere with the kernel negatively.
13
Brendan Gregg239e8632016-07-25 15:02:32 -070014BCC makes BPF programs easier to write, with kernel instrumentation in C
15(and includes a C wrapper around LLVM), and front-ends in Python and lua.
16It is suited for many tasks, including performance analysis and network
17traffic control.
Brendan Gregg493fd622015-09-10 14:46:52 -070018
19## Screenshot
20
21This example traces a disk I/O kernel function, and populates an in-kernel
22power-of-2 histogram of the I/O size. For efficiency, only the histogram
23summary is returned to user-level.
24
25```Shell
26# ./bitehist.py
27Tracing... Hit Ctrl-C to end.
28^C
Brendan Gregg8d70a882015-09-25 11:07:23 -070029 kbytes : count distribution
Brendan Gregg493fd622015-09-10 14:46:52 -070030 0 -> 1 : 3 | |
31 2 -> 3 : 0 | |
32 4 -> 7 : 211 |********** |
33 8 -> 15 : 0 | |
34 16 -> 31 : 0 | |
35 32 -> 63 : 0 | |
36 64 -> 127 : 1 | |
37 128 -> 255 : 800 |**************************************|
38```
39
40The above output shows a bimodal distribution, where the largest mode of
41800 I/O was between 128 and 255 Kbytes in size.
42
Brendan Gregg310ab532016-07-24 13:34:40 -070043See the source: [bitehist.py](examples/tracing/bitehist.py). What this traces,
44what this stores, and how the data is presented, can be entirely customized.
45This shows only some of many possible capabilities.
Brendenc3c4fc12015-05-03 08:33:53 -070046
Brenden Blanco31518432015-07-07 17:38:30 -070047## Installing
48
49See [INSTALL.md](INSTALL.md) for installation steps on your platform.
50
Jean-Tiare Le Bigot94e911c2016-02-21 23:01:05 +010051## FAQ
52
53See [FAQ.txt](FAQ.txt) for the most common troubleshoot questions.
54
Brendan Gregg493fd622015-09-10 14:46:52 -070055## Contents
56
57Some of these are single files that contain both C and Python, others have a
58pair of .c and .py files, and some are directories of files.
59
60### Tracing
61
Sasha Goldshtein2161e752017-02-09 10:25:20 -050062#### Examples:
Brendan Gregg493fd622015-09-10 14:46:52 -070063
Brendan Gregg310ab532016-07-24 13:34:40 -070064- examples/tracing/[bitehist.py](examples/tracing/bitehist.py): Block I/O size histogram. [Examples](examples/tracing/bitehist_example.txt).
Brendan Gregg9894e3e2016-07-24 13:37:20 -070065- examples/tracing/[disksnoop.py](examples/tracing/disksnoop.py): Trace block device I/O latency. [Examples](examples/tracing/disksnoop_example.txt).
Brendan Gregg493fd622015-09-10 14:46:52 -070066- examples/[hello_world.py](examples/hello_world.py): Prints "Hello, World!" for new processes.
Brendan Greggd602d6b2016-08-01 16:18:40 -070067- examples/tracing/[mysqld_query.py](examples/tracing/mysqld_query.py): Trace MySQL server queries using USDT probes. [Examples](examples/tracing/mysqld_query_example.txt).
68- examples/tracing/[nodejs_http_server.py](examples/tracing/nodejs_http_server.py): Trace Node.js HTTP server requests using USDT probes. [Examples](examples/tracing/nodejs_http_server_example.txt).
Brendan Greggb79df7b2016-07-24 13:40:25 -070069- examples/tracing/[task_switch.py](examples/tracing/task_switch.py): Count task switches with from and to PIDs.
Eduardo Urias64908b92016-04-06 17:18:20 -040070- examples/tracing/[tcpv4connect.py](examples/tracing/tcpv4connect.py): Trace TCP IPv4 active connections. [Examples](examples/tracing/tcpv4connect_example.txt).
Dr.Zd978a0d2015-11-12 04:45:21 +090071- examples/tracing/[trace_fields.py](examples/tracing/trace_fields.py): Simple example of printing fields from traced events.
Brendan Gregge422f5e2016-07-01 18:38:30 -070072- examples/tracing/[urandomread.py](examples/tracing/urandomread.py): A kernel tracepoint example, which traces random:urandom_read. [Examples](examples/tracing/urandomread_example.txt).
Dr.Zd978a0d2015-11-12 04:45:21 +090073- examples/tracing/[vfsreadlat.py](examples/tracing/vfsreadlat.py) examples/tracing/[vfsreadlat.c](examples/tracing/vfsreadlat.c): VFS read latency distribution. [Examples](examples/tracing/vfsreadlat_example.txt).
Brendan Gregg493fd622015-09-10 14:46:52 -070074
Brendan Gregg42cf2bf2016-02-23 16:26:43 -080075#### Tools:
Brendan Gregg4ec5e4d2017-02-08 23:49:21 -080076<center><a href="images/bcc_tracing_tools_2017.png"><img src="images/bcc_tracing_tools_2017.png" border=0 width=700></a></center>
Sasha Goldshtein6ae261e2016-02-14 08:32:54 -080077- tools/[argdist](tools/argdist.py): Display function parameter values as a histogram or frequency count. [Examples](tools/argdist_example.txt).
Brendan Greggaa879972016-01-28 22:43:37 -080078- tools/[bashreadline](tools/bashreadline.py): Print entered bash commands system wide. [Examples](tools/bashreadline_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -080079- tools/[biolatency](tools/biolatency.py): Summarize block device I/O latency as a histogram. [Examples](tools/biolatency_example.txt).
Brendan Gregg6f075b92016-02-07 00:46:34 -080080- tools/[biotop](tools/biotop.py): Top for disks: Summarize block device I/O by process. [Examples](tools/biotop_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -080081- tools/[biosnoop](tools/biosnoop.py): Trace block device I/O with PID and latency. [Examples](tools/biosnoop_example.txt).
Allan McAleavyeb3c9602016-02-06 12:06:18 +000082- tools/[bitesize](tools/bitesize.py): Show per process I/O size histogram. [Examples](tools/bitesize_example.txt).
Brendan Greggddce4db2016-02-15 22:24:02 -080083- tools/[btrfsdist](tools/btrfsdist.py): Summarize btrfs operation latency distribution as a histogram. [Examples](tools/btrfsdist_example.txt).
Brendan Greggee74c372016-02-15 22:22:19 -080084- tools/[btrfsslower](tools/btrfsslower.py): Trace slow btrfs operations. [Examples](tools/btrfsslower_example.txt).
Brendan Gregg12989982016-09-14 08:15:09 -070085- tools/[capable](tools/capable.py): Trace security capability checks. [Examples](tools/capable_example.txt).
unixtest57abe5b2016-01-31 10:47:03 +000086- tools/[cachestat](tools/cachestat.py): Trace page cache hit/miss ratio. [Examples](tools/cachestat_example.txt).
chantrae159f7e2016-07-23 15:33:11 +020087- tools/[cachetop](tools/cachetop.py): Trace page cache hit/miss ratio by processes. [Examples](tools/cachetop_example.txt).
Sasha Goldshtein9972f272016-06-29 01:48:08 -070088- tools/[cpudist](tools/cpudist.py): Summarize on- and off-CPU time per task as a histogram. [Examples](tools/cpudist_example.txt)
Brendan Gregg3f3acd82016-12-21 15:34:09 -080089- tools/[cpuunclaimed](tools/cpuunclaimed.py): Sample CPU run queues and calculate unclaimed idle CPU. [Examples](tools/cpuunclaimed_example.txt)
Sasha Goldshtein2161e752017-02-09 10:25:20 -050090- tools/[dbslower](tools/dbslower.py): Trace MySQL/PostgreSQL queries slower than a threshold. [Examples](tools/dbslower_example.txt).
91- tools/[dbstat](tools/dbstat.py): Summarize MySQL/PostgreSQL query latency as a histogram. [Examples](tools/dbstat_example.txt).
Brendan Gregg2757f0e2016-02-10 01:38:32 -080092- tools/[dcsnoop](tools/dcsnoop.py): Trace directory entry cache (dcache) lookups. [Examples](tools/dcsnoop_example.txt).
Brendan Gregg5bfadab2016-02-10 01:36:51 -080093- tools/[dcstat](tools/dcstat.py): Directory entry cache (dcache) stats. [Examples](tools/dcstat_example.txt).
Sasha Goldshtein2161e752017-02-09 10:25:20 -050094- tools/[deadlock_detector](tools/deadlock_detector.py): Detect potential deadlocks on a running process. [Examples](tools/deadlock_detector_example.txt).
Brendan Gregg3e4b7472016-02-14 18:16:06 -080095- tools/[execsnoop](tools/execsnoop.py): Trace new processes via exec() syscalls. [Examples](tools/execsnoop_example.txt).
Brendan Gregg157fee32016-02-14 23:31:14 -080096- tools/[ext4dist](tools/ext4dist.py): Summarize ext4 operation latency distribution as a histogram. [Examples](tools/ext4dist_example.txt).
Brendan Greggcd1cad12016-02-12 02:27:19 -080097- tools/[ext4slower](tools/ext4slower.py): Trace slow ext4 operations. [Examples](tools/ext4slower_example.txt).
Brendan Greggdc642c52016-02-09 00:32:51 -080098- tools/[filelife](tools/filelife.py): Trace the lifespan of short-lived files. [Examples](tools/filelife_example.txt).
Brendan Gregg75d3e9d2016-02-07 18:48:20 -080099- tools/[fileslower](tools/fileslower.py): Trace slow synchronous file reads and writes. [Examples](tools/fileslower_example.txt).
Brendan Gregg08c29812016-02-09 00:36:43 -0800100- tools/[filetop](tools/filetop.py): File reads and writes by filename and process. Top for files. [Examples](tools/filetop_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800101- tools/[funccount](tools/funccount.py): Count kernel function calls. [Examples](tools/funccount_example.txt).
Sasha Goldshteina466c462016-10-06 21:17:59 +0300102- tools/[funclatency](tools/funclatency.py): Time functions and show their latency distribution. [Examples](tools/funclatency_example.txt).
Brendan Gregg5a06c2c2016-01-28 23:00:00 -0800103- tools/[gethostlatency](tools/gethostlatency.py): Show latency for getaddrinfo/gethostbyname[2] calls. [Examples](tools/gethostlatency_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800104- tools/[hardirqs](tools/hardirqs.py): Measure hard IRQ (hard interrupt) event time. [Examples](tools/hardirqs_example.txt).
105- tools/[killsnoop](tools/killsnoop.py): Trace signals issued by the kill() syscall. [Examples](tools/killsnoop_example.txt).
Brendan Gregg715f7e62016-10-20 22:50:08 -0700106- tools/[llcstat](tools/llcstat.py): Summarize CPU cache references and misses by process. [Examples](tools/llcstat_example.txt).
Brendan Gregga691c542016-02-14 18:22:57 -0800107- tools/[mdflush](tools/mdflush.py): Trace md flush events. [Examples](tools/mdflush_example.txt).
Brendan Greggd602d6b2016-08-01 16:18:40 -0700108- tools/[mysqld_qslower](tools/mysqld_qslower.py): Trace MySQL server queries slower than a threshold. [Examples](tools/mysqld_qslower_example.txt).
Sasha Goldshtein56875792016-02-14 07:53:59 -0800109- tools/[memleak](tools/memleak.py): Display outstanding memory allocations to find memory leaks. [Examples](tools/memleak_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800110- tools/[offcputime](tools/offcputime.py): Summarize off-CPU time by kernel stack trace. [Examples](tools/offcputime_example.txt).
Brendan Greggaf2b46a2016-01-30 11:02:29 -0800111- tools/[offwaketime](tools/offwaketime.py): Summarize blocked time by kernel off-CPU stack and waker stack. [Examples](tools/offwaketime_example.txt).
Brendan Greggfe430e52016-02-10 01:34:53 -0800112- tools/[oomkill](tools/oomkill.py): Trace the out-of-memory (OOM) killer. [Examples](tools/oomkill_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800113- tools/[opensnoop](tools/opensnoop.py): Trace open() syscalls. [Examples](tools/opensnoop_example.txt).
114- tools/[pidpersec](tools/pidpersec.py): Count new processes (via fork). [Examples](tools/pidpersec_example.txt).
Brendan Greggf4bf2752016-07-21 18:13:24 -0700115- tools/[profile](tools/profile.py): Profile CPU usage by sampling stack traces at a timed interval. [Examples](tools/profile_example.txt).
Brendan Gregg72027c12016-10-19 18:48:17 -0700116- tools/[reset-trace](tools/reset-trace.sh): Reset the state of tracing. Maintenance tool only. [Examples](tools/reset-trace_example.txt).
Brendan Gregg3a391c22016-02-08 01:20:31 -0800117- tools/[runqlat](tools/runqlat.py): Run queue (scheduler) latency as a histogram. [Examples](tools/runqlat_example.txt).
Brendan Gregg251823a2016-12-14 12:10:59 -0800118- tools/[runqlen](tools/runqlen.py): Run queue length as a histogram. [Examples](tools/runqlen_example.txt).
Sasha Goldshtein2161e752017-02-09 10:25:20 -0500119- tools/[slabratetop](tools/slabratetop.py): Kernel SLAB/SLUB memory cache allocation rate top. [Examples](tools/slabratetop_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800120- tools/[softirqs](tools/softirqs.py): Measure soft IRQ (soft interrupt) event time. [Examples](tools/softirqs_example.txt).
Jean-Tiare Le Bigota1ac2f92016-03-04 21:45:32 +0100121- tools/[solisten](tools/solisten.py): Trace TCP socket listen. [Examples](tools/solisten_example.txt).
Adrian Lopezd496d5c2016-08-16 17:49:49 +0200122- tools/[sslsniff](tools/sslsniff.py): Sniff OpenSSL written and readed data. [Examples](tools/sslsniff_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800123- tools/[stackcount](tools/stackcount.py): Count kernel function calls and their stack traces. [Examples](tools/stackcount_example.txt).
124- tools/[stacksnoop](tools/stacksnoop.py): Trace a kernel function and print all kernel stack traces. [Examples](tools/stacksnoop_example.txt).
Brendan Greggad341c92016-02-09 00:31:24 -0800125- tools/[statsnoop](tools/statsnoop.py): Trace stat() syscalls. [Examples](tools/statsnoop_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800126- tools/[syncsnoop](tools/syncsnoop.py): Trace sync() syscall. [Examples](tools/syncsnoop_example.txt).
Sasha Goldshtein8e583cc2017-02-09 10:11:50 -0500127- tools/[syscount](tools/syscount.py): Summarize syscall counts and latencies. [Examples](tools/syscount_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800128- tools/[tcpaccept](tools/tcpaccept.py): Trace TCP passive connections (accept()). [Examples](tools/tcpaccept_example.txt).
129- tools/[tcpconnect](tools/tcpconnect.py): Trace TCP active connections (connect()). [Examples](tools/tcpconnect_example.txt).
Brendan Greggafc97252016-02-19 16:07:36 -0800130- tools/[tcpconnlat](tools/tcpconnlat.py): Trace TCP active connection latency (connect()). [Examples](tools/tcpconnlat_example.txt).
Brendan Gregg797c3ec2016-10-19 18:55:10 -0700131- tools/[tcplife](tools/tcplife.py): Trace TCP sessions and summarize lifespan. [Examples](tools/tcplife_example.txt).
Brendan Gregg553f2aa2016-02-14 18:15:24 -0800132- tools/[tcpretrans](tools/tcpretrans.py): Trace TCP retransmits and TLPs. [Examples](tools/tcpretrans_example.txt).
Brendan Gregg60393ea2016-10-04 15:18:11 -0700133- tools/[tcptop](tools/tcptop.py): Summarize TCP send/recv throughput by host. Top for TCP. [Examples](tools/tcptop_example.txt).
Sasha Goldshtein3e39a082016-03-24 08:39:47 -0700134- tools/[tplist](tools/tplist.py): Display kernel tracepoints or USDT probes and their formats. [Examples](tools/tplist_example.txt).
Sasha Goldshtein2161e752017-02-09 10:25:20 -0500135- tools/[trace](tools/trace.py): Trace arbitrary functions, with filters. [Examples](tools/trace_example.txt).
136- tools/[ttysnoop](tools/ttysnoop.py): Watch live output from a tty or pts device. [Examples](tools/ttysnoop_example.txt).
137- tools/[ucalls](tools/ucalls.py): Summarize method calls or Linux syscalls in high-level languages. [Examples](tools/ucalls_example.txt).
138- tools/[uflow](tools/uflow.py): Print a method flow graph in high-level languages. [Examples](tools/uflow_example.txt).
139- tools/[ugc](tools/ugc.py): Trace garbage collection events in high-level languages. [Examples](tools/ugc_example.txt).
140- tools/[uobjnew](tools/uobjnew.py): Summarize object allocation events by object type and number of bytes allocated. [Examples](tools/uobjnew_example.txt).
141- tools/[ustat](tools/ustat.py): Collect events such as GCs, thread creations, object allocations, exceptions and more in high-level languages. [Examples](tools/ustat_example.txt).
142- tools/[uthreads](tools/uthreads.py): Trace thread creation events in Java and raw pthreads. [Examples](tools/uthreads_example.txt).
Brendan Gregg7bf0e492016-01-27 23:17:40 -0800143- tools/[vfscount](tools/vfscount.py) tools/[vfscount.c](tools/vfscount.c): Count VFS calls. [Examples](tools/vfscount_example.txt).
144- tools/[vfsstat](tools/vfsstat.py) tools/[vfsstat.c](tools/vfsstat.c): Count some VFS calls, with column output. [Examples](tools/vfsstat_example.txt).
145- tools/[wakeuptime](tools/wakeuptime.py): Summarize sleep to wakeup time by waker kernel stack. [Examples](tools/wakeuptime_example.txt).
Brendan Gregg157fee32016-02-14 23:31:14 -0800146- tools/[xfsdist](tools/xfsdist.py): Summarize XFS operation latency distribution as a histogram. [Examples](tools/xfsdist_example.txt).
Brendan Gregg23c96fe2016-02-12 02:25:32 -0800147- tools/[xfsslower](tools/xfsslower.py): Trace slow XFS operations. [Examples](tools/xfsslower_example.txt).
Brendan Gregg157fee32016-02-14 23:31:14 -0800148- tools/[zfsdist](tools/zfsdist.py): Summarize ZFS operation latency distribution as a histogram. [Examples](tools/zfsdist_example.txt).
Brendan Greggbc54bb62016-02-14 23:13:13 -0800149- tools/[zfsslower](tools/zfsslower.py): Trace slow ZFS operations. [Examples](tools/zfsslower_example.txt).
Brendan Gregg493fd622015-09-10 14:46:52 -0700150
151### Networking
152
153Examples:
154
Dr.Zd978a0d2015-11-12 04:45:21 +0900155- examples/networking/[distributed_bridge/](examples/networking/distributed_bridge): Distributed bridge example.
Bertrone Matteo46974b12016-02-18 12:36:28 +0100156- examples/networking/[http_filter/](examples/networking/http_filter): Simple HTTP filter example.
Dr.Zd978a0d2015-11-12 04:45:21 +0900157- examples/networking/[simple_tc.py](examples/networking/simple_tc.py): Simple traffic control example.
158- examples/networking/[simulation.py](examples/networking/simulation.py): Simulation helper.
159- examples/networking/neighbor_sharing/[tc_neighbor_sharing.py](examples/networking/neighbor_sharing/tc_neighbor_sharing.py) examples/networking/neighbor_sharing/[tc_neighbor_sharing.c](examples/networking/neighbor_sharing/tc_neighbor_sharing.c): Per-IP classification and rate limiting.
160- examples/networking/[tunnel_monitor/](examples/networking/tunnel_monitor): Efficiently monitor traffic flows. [Example video](https://www.youtube.com/watch?v=yYy3Cwce02k).
161- examples/networking/vlan_learning/[vlan_learning.py](examples/networking/vlan_learning/vlan_learning.py) examples/[vlan_learning.c](examples/networking/vlan_learning/vlan_learning.c): Demux Ethernet traffic into worker veth+namespaces.
Brendan Gregg493fd622015-09-10 14:46:52 -0700162
Brendenc3c4fc12015-05-03 08:33:53 -0700163## Motivation
164
165BPF guarantees that the programs loaded into the kernel cannot crash, and
Brenden Blanco452de202015-05-03 10:43:07 -0700166cannot run forever, but yet BPF is general purpose enough to perform many
167arbitrary types of computation. Currently, it is possible to write a program in
Brendenc3c4fc12015-05-03 08:33:53 -0700168C that will compile into a valid BPF program, yet it is vastly easier to
169write a C program that will compile into invalid BPF (C is like that). The user
Brenden Blanco452de202015-05-03 10:43:07 -0700170won't know until trying to run the program whether it was valid or not.
Brendenc3c4fc12015-05-03 08:33:53 -0700171
172With a BPF-specific frontend, one should be able to write in a language and
173receive feedback from the compiler on the validity as it pertains to a BPF
174backend. This toolkit aims to provide a frontend that can only create valid BPF
175programs while still harnessing its full flexibility.
176
Brenden Blanco46176a12015-07-07 13:05:22 -0700177Furthermore, current integrations with BPF have a kludgy workflow, sometimes
178involving compiling directly in a linux kernel source tree. This toolchain aims
179to minimize the time that a developer spends getting BPF compiled, and instead
180focus on the applications that can be written and the problems that can be
181solved with BPF.
182
Brendenc3c4fc12015-05-03 08:33:53 -0700183The features of this toolkit include:
184* End-to-end BPF workflow in a shared library
Brenden Blanco46176a12015-07-07 13:05:22 -0700185 * A modified C language for BPF backends
Brenden Blanco452de202015-05-03 10:43:07 -0700186 * Integration with llvm-bpf backend for JIT
Brendenc3c4fc12015-05-03 08:33:53 -0700187 * Dynamic (un)loading of JITed programs
188 * Support for BPF kernel hooks: socket filters, tc classifiers,
189 tc actions, and kprobes
190* Bindings for Python
191* Examples for socket filters, tc classifiers, and kprobes
Brenden Blanco32326202015-09-03 16:31:47 -0700192* Self-contained tools for tracing a running system
Brenden Blanco46176a12015-07-07 13:05:22 -0700193
194In the future, more bindings besides python will likely be supported. Feel free
195to add support for the language of your choice and send a pull request!
196
Brendan Gregg239e8632016-07-25 15:02:32 -0700197## Tutorials
Brenden Blanco46176a12015-07-07 13:05:22 -0700198
Brendan Gregg239e8632016-07-25 15:02:32 -0700199- [docs/tutorial.md](docs/tutorial.md): Using bcc tools to solve performance, troubleshooting, and networking issues.
200- [docs/tutorial_bcc_python_developer.md](docs/tutorial_bcc_python_developer.md): Developing new bcc programs using the Python interface.
Brendan Greggfc5332a2016-07-26 13:25:53 -0700201- [docs/reference_guide.md](docs/reference_guide.md): Reference guide to the bcc and bcc/BPF APIs.
Brenden Blanco46176a12015-07-07 13:05:22 -0700202
203### Networking
204
Alex Bagehot3b9679a2016-02-06 16:01:02 +0000205At Red Hat Summit 2015, BCC was presented as part of a [session on BPF](http://www.devnation.org/#7784f1f7513e8542e4db519e79ff5eec).
Brenden Blanco31518432015-07-07 17:38:30 -0700206A multi-host vxlan environment is simulated and a BPF program used to monitor
207one of the physical interfaces. The BPF program keeps statistics on the inner
208and outer IP addresses traversing the interface, and the userspace component
209turns those statistics into a graph showing the traffic distribution at
Dr.Zd978a0d2015-11-12 04:45:21 +0900210multiple granularities. See the code [here](examples/networking/tunnel_monitor).
Brenden Blanco31518432015-07-07 17:38:30 -0700211
212[![Screenshot](http://img.youtube.com/vi/yYy3Cwce02k/0.jpg)](https://youtu.be/yYy3Cwce02k)
Brenden Blanco46176a12015-07-07 13:05:22 -0700213
Suchakra Sharma09de7bb2015-09-24 13:16:26 -0400214## Contributing
Brendan Gregg87d2f692016-02-05 13:36:06 -0800215
Suchakra Sharma4949f1a2015-09-24 14:27:46 -0400216Already pumped up to commit some code? Here are some resources to join the
217discussions in the [IOVisor](https://www.iovisor.org/) community and see
218what you want to work on.
Suchakra Sharma09de7bb2015-09-24 13:16:26 -0400219
220* _Mailing List:_ http://lists.iovisor.org/mailman/listinfo/iovisor-dev
221* _IRC:_ #iovisor at irc.oftc.net
222* _IRC Logs:_ https://scrollback.io/iovisor/all
223* _BCC Issue Tracker:_ [Github Issues](https://github.com/iovisor/bcc/issues)
Brendan Gregg87d2f692016-02-05 13:36:06 -0800224* _A guide for contributing scripts:_ [CONTRIBUTING-SCRIPTS.md](CONTRIBUTING-SCRIPTS.md)