├── .clang-format ├── .dockerignore ├── .github ├── actions │ └── build-container │ │ └── action.yml └── workflows │ ├── bcc-test.yml │ ├── publish-build-containers.yml │ └── publish.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── CODEOWNERS ├── CONTRIBUTING-SCRIPTS.md ├── FAQ.txt ├── INSTALL.md ├── LICENSE.txt ├── LINKS.md ├── QUICKSTART.md ├── README.md ├── SPECS ├── Dockerfile.fedora ├── bcc+clang.spec └── bcc.spec ├── cmake ├── CmakeUninstall.cmake.in ├── FindCompilerFlag.cmake ├── FindKernelHeaders.cmake ├── FindLibBpf.cmake ├── FindLibDebuginfod.cmake ├── FindLibElf.cmake ├── FindLibLzma.cmake ├── FindLuaJIT.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── bump_version.cmake ├── clang_libs.cmake ├── static_libstdc++.cmake └── version.cmake ├── debian ├── bcc-lua.install ├── bcc-tools.install ├── changelog ├── compat ├── control ├── copyright ├── docs ├── libbcc-examples.install ├── libbcc.install ├── python-bcc.install ├── rules └── source │ └── format ├── docker ├── Dockerfile.debian ├── Dockerfile.ubuntu └── build │ ├── Dockerfile.fedora │ └── Dockerfile.ubuntu ├── docs ├── kernel-versions.md ├── kernel_config.md ├── reference_guide.md ├── special_filtering.md ├── tutorial.md └── tutorial_bcc_python_developer.md ├── examples ├── CMakeLists.txt ├── cgroupid │ ├── Dockerfile │ ├── Makefile │ └── cgroupid.c ├── cpp │ ├── CGroupTest.cc │ ├── CMakeLists.txt │ ├── CPUDistribution.cc │ ├── FollyRequestContextSwitch.cc │ ├── HelloWorld.cc │ ├── KFuncExample.cc │ ├── KModRetExample.cc │ ├── LLCStat.cc │ ├── RandomRead.cc │ ├── RecordMySQLQuery.cc │ ├── SkLocalStorageIterator.cc │ ├── TCPSendStack.cc │ ├── TaskIterator.cc │ ├── UseExternalMap.cc │ └── pyperf │ │ ├── CMakeLists.txt │ │ ├── Py36Offsets.cc │ │ ├── PyPerf.cc │ │ ├── PyPerfBPFProgram.cc │ │ ├── PyPerfDefaultPrinter.cc │ │ ├── PyPerfDefaultPrinter.h │ │ ├── PyPerfLoggingHelper.cc │ │ ├── PyPerfLoggingHelper.h │ │ ├── PyPerfSampleProcessor.h │ │ ├── PyPerfType.h │ │ ├── PyPerfUtil.cc │ │ └── PyPerfUtil.h ├── hello_world.py ├── local_storage │ ├── inode_storage.py │ └── task_storage.py ├── lua │ ├── CMakeLists.txt │ ├── bashreadline.c │ ├── bashreadline.lua │ ├── kprobe-latency.lua │ ├── kprobe-write.lua │ ├── memleak.lua │ ├── offcputime.lua │ ├── sock-parse-dns.lua │ ├── sock-parse-http.lua │ ├── sock-proto.lua │ ├── sock-protolen.lua │ ├── strlen_count.lua │ ├── task_switch.lua │ ├── tracepoint-offcputime.lua │ ├── uprobe-readline-perf.lua │ ├── uprobe-readline.lua │ ├── uprobe-tailkt.lua │ └── usdt_ruby.lua ├── networking │ ├── CMakeLists.txt │ ├── distributed_bridge │ │ ├── CMakeLists.txt │ │ ├── main.py │ │ ├── simulation.py │ │ ├── tunnel.c │ │ ├── tunnel.py │ │ ├── tunnel_mesh.c │ │ └── tunnel_mesh.py │ ├── dns_matching │ │ ├── dns_matching.c │ │ └── dns_matching.py │ ├── http_filter │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── http-parse-complete.c │ │ ├── http-parse-complete.py │ │ ├── http-parse-simple.c │ │ └── http-parse-simple.py │ ├── neighbor_sharing │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── simulation.py │ │ ├── tc_neighbor_sharing.c │ │ └── tc_neighbor_sharing.py │ ├── net_monitor.py │ ├── simple_tc.py │ ├── simulation.py │ ├── sockmap.py │ ├── tc_perf_event.py │ ├── tcp_mon_block │ │ ├── README.md │ │ ├── screenshots │ │ │ ├── 1.JPG │ │ │ └── 2.JPG │ │ └── src │ │ │ ├── allow_list.json │ │ │ ├── http_client.py │ │ │ ├── tcp_mon_block.c │ │ │ ├── tcp_mon_block.py │ │ │ └── web_server.py │ ├── tunnel_monitor │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── chord.png │ │ ├── main.py │ │ ├── monitor.c │ │ ├── monitor.py │ │ ├── setup.sh │ │ ├── simulation.py │ │ ├── traffic.sh │ │ └── vxlan.jpg │ ├── vlan_filter │ │ ├── README.md │ │ ├── data-plane-tracing.c │ │ ├── data-plane-tracing.py │ │ ├── scenario.jpg │ │ ├── test_setup.sh │ │ └── test_traffic.sh │ ├── vlan_learning │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── simulation.py │ │ ├── vlan_learning.c │ │ └── vlan_learning.py │ └── xdp │ │ ├── CMakeLists.txt │ │ ├── xdp_drop_count.py │ │ ├── xdp_macswap_count.py │ │ ├── xdp_redirect_cpu.py │ │ └── xdp_redirect_map.py ├── perf │ └── ipc.py ├── ringbuf │ ├── ringbuf_output.py │ └── ringbuf_submit.py ├── tracing │ ├── CMakeLists.txt │ ├── biolatpcts.py │ ├── biolatpcts_example.txt │ ├── bitehist.py │ ├── bitehist_example.txt │ ├── dddos.py │ ├── dddos_example.txt │ ├── disksnoop.py │ ├── disksnoop_example.txt │ ├── hello_fields.py │ ├── hello_perf_output.py │ ├── hello_perf_output_using_ns.py │ ├── kvm_hypercall.py │ ├── kvm_hypercall.txt │ ├── lbr.py │ ├── mallocstacks.py │ ├── mysqld_query.py │ ├── mysqld_query_example.txt │ ├── nflatency.py │ ├── nodejs_http_server.py │ ├── nodejs_http_server_example.txt │ ├── stack_buildid_example.py │ ├── stacksnoop.py │ ├── stacksnoop_example.txt │ ├── strlen_count.py │ ├── strlen_hist.py │ ├── strlen_hist_ifunc.py │ ├── strlen_snoop.py │ ├── sync_timing.py │ ├── task_switch.c │ ├── task_switch.py │ ├── tcpv4connect.py │ ├── tcpv4connect_example.txt │ ├── trace_fields.py │ ├── trace_perf_output.py │ ├── undump.py │ ├── undump_example.txt │ ├── urandomread-explicit.py │ ├── urandomread.py │ ├── urandomread_example.txt │ ├── vfsreadlat.c │ ├── vfsreadlat.py │ └── vfsreadlat_example.txt └── usdt_sample │ ├── .gitignore │ ├── CMakeLists.txt │ ├── scripts │ ├── bpf_text_shared.c │ ├── lat_avg.py │ ├── lat_dist.py │ └── latency.py │ ├── usdt_sample.md │ ├── usdt_sample.sh │ ├── usdt_sample_app1 │ ├── CMakeLists.txt │ └── main.cpp │ └── usdt_sample_lib1 │ ├── CMakeLists.txt │ ├── include │ └── usdt_sample_lib1 │ │ └── lib1.h │ └── src │ ├── lib1.cpp │ ├── lib1_sdt.d │ └── lib1_sdt.h ├── images ├── bcc_tracing_tools_2016.png ├── bcc_tracing_tools_2017.png ├── bcc_tracing_tools_2019.png ├── logo1.png ├── logo1.svg ├── logo2.png └── logo2.svg ├── introspection ├── CMakeLists.txt ├── bps.c └── bps_example.txt ├── libbpf-tools ├── .gitignore ├── Makefile ├── Makefile.btfgen ├── README.md ├── arm64 │ ├── vmlinux.h │ └── vmlinux_608.h ├── bashreadline.bpf.c ├── bashreadline.c ├── bashreadline.h ├── bindsnoop.bpf.c ├── bindsnoop.c ├── bindsnoop.h ├── biolatency.bpf.c ├── biolatency.c ├── biolatency.h ├── biopattern.bpf.c ├── biopattern.c ├── biopattern.h ├── biosnoop.bpf.c ├── biosnoop.c ├── biosnoop.h ├── biostacks.bpf.c ├── biostacks.c ├── biostacks.h ├── biotop.bpf.c ├── biotop.c ├── biotop.h ├── bitesize.bpf.c ├── bitesize.c ├── bitesize.h ├── bits.bpf.h ├── blk_types.h ├── btf_helpers.c ├── btf_helpers.h ├── cachestat.bpf.c ├── cachestat.c ├── capable.bpf.c ├── capable.c ├── capable.h ├── compat.bpf.h ├── compat.c ├── compat.h ├── core_fixes.bpf.h ├── cpudist.bpf.c ├── cpudist.c ├── cpudist.h ├── cpufreq.bpf.c ├── cpufreq.c ├── cpufreq.h ├── drsnoop.bpf.c ├── drsnoop.c ├── drsnoop.h ├── drsnoop_example.txt ├── errno_helpers.c ├── errno_helpers.h ├── execsnoop.bpf.c ├── execsnoop.c ├── execsnoop.h ├── exitsnoop.bpf.c ├── exitsnoop.c ├── exitsnoop.h ├── filelife.bpf.c ├── filelife.c ├── filelife.h ├── filetop.bpf.c ├── filetop.c ├── filetop.h ├── fsdist.bpf.c ├── fsdist.c ├── fsdist.h ├── fsslower.bpf.c ├── fsslower.c ├── fsslower.h ├── funclatency.bpf.c ├── funclatency.c ├── funclatency.h ├── futexctn.bpf.c ├── futexctn.c ├── futexctn.h ├── gethostlatency.bpf.c ├── gethostlatency.c ├── gethostlatency.h ├── hardirqs.bpf.c ├── hardirqs.c ├── hardirqs.h ├── javagc.bpf.c ├── javagc.c ├── javagc.h ├── kernel.config ├── klockstat.bpf.c ├── klockstat.c ├── klockstat.h ├── ksnoop.bpf.c ├── ksnoop.c ├── ksnoop.h ├── llcstat.bpf.c ├── llcstat.c ├── llcstat.h ├── loongarch │ ├── vmlinux.h │ └── vmlinux_602.h ├── map_helpers.c ├── map_helpers.h ├── maps.bpf.h ├── mdflush.bpf.c ├── mdflush.c ├── mdflush.h ├── memleak.bpf.c ├── memleak.c ├── memleak.h ├── mountsnoop.bpf.c ├── mountsnoop.c ├── mountsnoop.h ├── numamove.bpf.c ├── numamove.c ├── offcputime.bpf.c ├── offcputime.c ├── offcputime.h ├── oomkill.bpf.c ├── oomkill.c ├── oomkill.h ├── opensnoop.bpf.c ├── opensnoop.c ├── opensnoop.h ├── powerpc │ ├── vmlinux.h │ └── vmlinux_660.h ├── profile.bpf.c ├── profile.c ├── profile.h ├── readahead.bpf.c ├── readahead.c ├── readahead.h ├── riscv │ ├── vmlinux.h │ └── vmlinux_602.h ├── runqlat.bpf.c ├── runqlat.c ├── runqlat.h ├── runqlen.bpf.c ├── runqlen.c ├── runqlen.h ├── runqslower.bpf.c ├── runqslower.c ├── runqslower.h ├── runqslower_example.txt ├── s390 │ ├── vmlinux.h │ └── vmlinux_6413.h ├── sigsnoop.bpf.c ├── sigsnoop.c ├── sigsnoop.h ├── sigsnoop_example.txt ├── slabratetop.bpf.c ├── slabratetop.c ├── slabratetop.h ├── softirqs.bpf.c ├── softirqs.c ├── softirqs.h ├── solisten.bpf.c ├── solisten.c ├── solisten.h ├── stat.h ├── statsnoop.bpf.c ├── statsnoop.c ├── statsnoop.h ├── syscall_helpers.c ├── syscall_helpers.h ├── syscount.bpf.c ├── syscount.c ├── syscount.h ├── tcpconnect.bpf.c ├── tcpconnect.c ├── tcpconnect.h ├── tcpconnlat.bpf.c ├── tcpconnlat.c ├── tcpconnlat.h ├── tcplife.bpf.c ├── tcplife.c ├── tcplife.h ├── tcppktlat.bpf.c ├── tcppktlat.c ├── tcppktlat.h ├── tcppktlat_example.txt ├── tcprtt.bpf.c ├── tcprtt.c ├── tcprtt.h ├── tcpstates.bpf.c ├── tcpstates.c ├── tcpstates.h ├── tcpsynbl.bpf.c ├── tcpsynbl.c ├── tcpsynbl.h ├── tcptop.bpf.c ├── tcptop.c ├── tcptop.h ├── tcptracer.bpf.c ├── tcptracer.c ├── tcptracer.h ├── trace_helpers.c ├── trace_helpers.h ├── uprobe_helpers.c ├── uprobe_helpers.h ├── vfsstat.bpf.c ├── vfsstat.c ├── vfsstat.h ├── wakeuptime.bpf.c ├── wakeuptime.c ├── wakeuptime.h └── x86 │ ├── vmlinux.h │ └── vmlinux_518.h ├── man ├── CMakeLists.txt └── man8 │ ├── CMakeLists.txt │ ├── argdist.8 │ ├── bashreadline.8 │ ├── bindsnoop.8 │ ├── biolatency.8 │ ├── biolatpcts.8 │ ├── biopattern.8 │ ├── biosnoop.8 │ ├── biotop.8 │ ├── bitesize.8 │ ├── bpflist.8 │ ├── bps.8 │ ├── btrfsdist.8 │ ├── btrfsslower.8 │ ├── cachestat.8 │ ├── cachetop.8 │ ├── capable.8 │ ├── cobjnew.8 │ ├── compactsnoop.8 │ ├── cpudist.8 │ ├── cpuunclaimed.8 │ ├── criticalstat.8 │ ├── cthreads.8 │ ├── dbslower.8 │ ├── dbstat.8 │ ├── dcsnoop.8 │ ├── dcstat.8 │ ├── deadlock.8 │ ├── dirtop.8 │ ├── drsnoop.8 │ ├── execsnoop.8 │ ├── exitsnoop.8 │ ├── ext4dist.8 │ ├── ext4slower.8 │ ├── f2fsslower.8 │ ├── filegone.8 │ ├── filelife.8 │ ├── fileslower.8 │ ├── filetop.8 │ ├── funccount.8 │ ├── funcinterval.8 │ ├── funclatency.8 │ ├── funcslower.8 │ ├── gethostlatency.8 │ ├── hardirqs.8 │ ├── inject.8 │ ├── javacalls.8 │ ├── javaflow.8 │ ├── javagc.8 │ ├── javaobjnew.8 │ ├── javastat.8 │ ├── javathreads.8 │ ├── killsnoop.8 │ ├── klockstat.8 │ ├── ksnoop.8 │ ├── kvmexit.8 │ ├── llcstat.8 │ ├── mdflush.8 │ ├── memleak.8 │ ├── mountsnoop.8 │ ├── mysqld_qslower.8 │ ├── netqtop.8 │ ├── nfsdist.8 │ ├── nfsslower.8 │ ├── nodegc.8 │ ├── nodestat.8 │ ├── offcputime.8 │ ├── offwaketime.8 │ ├── oomkill.8 │ ├── opensnoop.8 │ ├── perlcalls.8 │ ├── perlflow.8 │ ├── perlstat.8 │ ├── phpcalls.8 │ ├── phpflow.8 │ ├── phpstat.8 │ ├── pidpersec.8 │ ├── ppchcalls.8 │ ├── profile.8 │ ├── pythoncalls.8 │ ├── pythonflow.8 │ ├── pythongc.8 │ ├── pythonstat.8 │ ├── rdmaucma.8 │ ├── readahead.8 │ ├── reset-trace.8 │ ├── rubycalls.8 │ ├── rubyflow.8 │ ├── rubygc.8 │ ├── rubyobjnew.8 │ ├── rubystat.8 │ ├── runqlat.8 │ ├── runqlen.8 │ ├── runqslower.8 │ ├── shmsnoop.8 │ ├── slabratetop.8 │ ├── sofdsnoop.8 │ ├── softirqs.8 │ ├── solisten.8 │ ├── spfdsnoop.8 │ ├── sslsniff.8 │ ├── stackcount.8 │ ├── statsnoop.8 │ ├── swapin.8 │ ├── syncsnoop.8 │ ├── syscount.8 │ ├── tclcalls.8 │ ├── tclflow.8 │ ├── tclobjnew.8 │ ├── tclstat.8 │ ├── tcpaccept.8 │ ├── tcpcong.8 │ ├── tcpconnect.8 │ ├── tcpconnlat.8 │ ├── tcpdrop.8 │ ├── tcplife.8 │ ├── tcpretrans.8 │ ├── tcprtt.8 │ ├── tcpstates.8 │ ├── tcpsubnet.8 │ ├── tcpsynbl.8 │ ├── tcptop.8 │ ├── tcptracer.8 │ ├── threadsnoop.8 │ ├── tplist.8 │ ├── trace.8 │ ├── ttysnoop.8 │ ├── ucalls.8 │ ├── uflow.8 │ ├── ugc.8 │ ├── uobjnew.8 │ ├── ustat.8 │ ├── uthreads.8 │ ├── vfscount.8 │ ├── vfsstat.8 │ ├── virtiostat.8 │ ├── wakeuptime.8 │ ├── wqlat.8 │ ├── xfsdist.8 │ ├── xfsslower.8 │ ├── zfsdist.8 │ └── zfsslower.8 ├── scripts ├── README.md ├── bpf_demo.ks.erb ├── build-deb.sh ├── build-deb.sh.in ├── build-release-rpm.sh ├── build-rpm.sh ├── build_bpf_demo.sh ├── c-style-check.sh ├── check-helpers.sh ├── docker │ ├── auth.sh │ ├── build.sh │ └── push.sh ├── git-clang-format ├── git-tag.sh └── py-style-check.sh ├── snap ├── README.md ├── local │ └── bcc-wrapper └── snapcraft.yaml ├── src ├── CMakeLists.txt ├── cc │ ├── CMakeLists.txt │ ├── README │ ├── api │ │ ├── BPF.cc │ │ ├── BPF.h │ │ ├── BPFTable.cc │ │ ├── BPFTable.h │ │ └── CMakeLists.txt │ ├── bcc_btf.cc │ ├── bcc_btf.h │ ├── bcc_common.cc │ ├── bcc_common.h │ ├── bcc_debug.cc │ ├── bcc_debug.h │ ├── bcc_elf.c │ ├── bcc_elf.h │ ├── bcc_exception.h │ ├── bcc_libbpf_inc.h │ ├── bcc_perf_map.c │ ├── bcc_perf_map.h │ ├── bcc_proc.c │ ├── bcc_proc.h │ ├── bcc_syms.cc │ ├── bcc_syms.h │ ├── bcc_usdt.h │ ├── bcc_version.h.in │ ├── bcc_zip.c │ ├── bcc_zip.h │ ├── bpf_module.cc │ ├── bpf_module.h │ ├── bpf_module_rw_engine.cc │ ├── bpf_module_rw_engine_disabled.cc │ ├── bpffs_table.cc │ ├── clang │ │ └── include │ │ │ └── stdarg.h │ ├── common.cc │ ├── common.h │ ├── compat │ │ └── linux │ │ │ └── virtual_bpf.h │ ├── export │ │ ├── bpf_workaround.h │ │ ├── footer.h │ │ ├── helpers.h │ │ └── proto.h │ ├── exported_files.cc │ ├── exported_files.h │ ├── file_desc.h │ ├── frontends │ │ ├── CMakeLists.txt │ │ └── clang │ │ │ ├── CMakeLists.txt │ │ │ ├── arch_helper.h │ │ │ ├── b_frontend_action.cc │ │ │ ├── b_frontend_action.h │ │ │ ├── frontend_action_common.h │ │ │ ├── kbuild_helper.cc │ │ │ ├── kbuild_helper.h │ │ │ ├── loader.cc │ │ │ ├── loader.h │ │ │ ├── tp_frontend_action.cc │ │ │ └── tp_frontend_action.h │ ├── json_map_decl_visitor.cc │ ├── libbcc.pc.in │ ├── libbpf.c │ ├── libbpf.h │ ├── link_all.cc │ ├── perf_reader.c │ ├── perf_reader.h │ ├── setns.h │ ├── shared_table.cc │ ├── syms.h │ ├── table_desc.h │ ├── table_storage.cc │ ├── table_storage.h │ ├── table_storage_impl.h │ ├── usdt.h │ ├── usdt │ │ ├── CMakeLists.txt │ │ ├── usdt.cc │ │ └── usdt_args.cc │ └── vendor │ │ ├── optional.hpp │ │ └── tinyformat.hpp ├── lua │ ├── .busted │ ├── .luacheckrc │ ├── CMakeLists.txt │ ├── README.md │ ├── bcc-probe │ ├── bcc │ │ ├── bpf.lua │ │ ├── init.lua │ │ ├── libbcc.lua │ │ ├── run.lua │ │ ├── sym.lua │ │ ├── table.lua │ │ ├── tracerpipe.lua │ │ ├── usdt.lua │ │ └── vendor │ │ │ ├── argparse.lua │ │ │ ├── helpers.lua │ │ │ ├── json.lua │ │ │ ├── middleclass.lua │ │ │ └── posix.lua │ ├── bpf-scm-1.rockspec │ ├── bpf │ │ ├── bpf.lua │ │ ├── builtins.lua │ │ ├── cdef.lua │ │ ├── elf.lua │ │ ├── init.lua │ │ ├── ljbytecode.lua │ │ ├── proto.lua │ │ └── spec │ │ │ ├── README.md │ │ │ ├── codegen_spec.lua │ │ │ ├── compile_spec.lua │ │ │ ├── decoder_spec.lua │ │ │ ├── elf_spec.lua │ │ │ └── helper.lua │ ├── squishy │ └── src │ │ ├── main.c │ │ └── squish.lua └── python │ ├── CMakeLists.txt │ ├── bcc │ ├── __init__.py │ ├── containers.py │ ├── disassembler.py │ ├── libbcc.py │ ├── perf.py │ ├── syscall.py │ ├── table.py │ ├── tcp.py │ ├── usdt.py │ ├── utils.py │ └── version.py.in │ └── setup.py.in ├── tests ├── CMakeLists.txt ├── cc │ ├── CMakeLists.txt │ ├── catch.hpp │ ├── debuginfo_test_lib.cc │ ├── dummy_proc_map.txt │ ├── test_array_table.cc │ ├── test_bpf_table.cc │ ├── test_c_api.cc │ ├── test_cg_storage.cc │ ├── test_hash_table.cc │ ├── test_libbcc.cc │ ├── test_map_in_map.cc │ ├── test_parse_tracepoint.cc │ ├── test_perf_event.cc │ ├── test_pinned_table.cc │ ├── test_prog_table.cc │ ├── test_queuestack_table.cc │ ├── test_shared_table.cc │ ├── test_sk_storage.cc │ ├── test_sock_table.cc │ ├── test_static.c │ ├── test_usdt_args.cc │ ├── test_usdt_probes.cc │ ├── test_zip.cc │ ├── usdt_test_lib.cc │ └── utils.cc ├── lua │ ├── .busted │ ├── .luacheckrc │ ├── CMakeLists.txt │ ├── luaunit.lua │ ├── spec │ ├── test_clang.lua │ ├── test_dump.lua │ ├── test_helper.lua │ ├── test_standalone.sh │ └── test_uprobes.lua ├── python │ ├── CMakeLists.txt │ ├── dummy.cc │ ├── include │ │ └── folly │ │ │ └── tracing │ │ │ ├── StaticTracepoint-ELFx86.h │ │ │ └── StaticTracepoint.h │ ├── simulation.py │ ├── test_array.py │ ├── test_attach_perf_event.py │ ├── test_bpf_log.py │ ├── test_brb.c │ ├── test_brb.py │ ├── test_brb2.c │ ├── test_brb2.py │ ├── test_call1.c │ ├── test_call1.py │ ├── test_clang.py │ ├── test_clang_complex.c │ ├── test_debuginfo.py │ ├── test_disassembler.py │ ├── test_dump_func.py │ ├── test_flags.py │ ├── test_histogram.py │ ├── test_license.py │ ├── test_lpm_trie.py │ ├── test_lru.py │ ├── test_map_batch_ops.py │ ├── test_map_in_map.py │ ├── test_percpu.py │ ├── test_perf_event.py │ ├── test_probe_count.py │ ├── test_queuestack.py │ ├── test_ringbuf.py │ ├── test_rlimit.py │ ├── test_shared_table.py │ ├── test_stackid.py │ ├── test_stat1.c │ ├── test_stat1.py │ ├── test_tools_memleak.py │ ├── test_tools_memleak_leaker_app.c │ ├── test_tools_smoke.py │ ├── test_trace2.c │ ├── test_trace2.py │ ├── test_trace3.c │ ├── test_trace3.py │ ├── test_trace4.py │ ├── test_trace_maxactive.py │ ├── test_tracepoint.py │ ├── test_uprobes.py │ ├── test_uprobes2.py │ ├── test_usdt.py │ ├── test_usdt2.py │ ├── test_usdt3.py │ ├── test_utils.py │ ├── test_xlate1.c │ ├── test_xlate1.py │ └── utils.py └── wrapper.sh.in └── tools ├── CMakeLists.txt ├── argdist.py ├── argdist_example.txt ├── bashreadline.py ├── bashreadline_example.txt ├── bindsnoop.py ├── bindsnoop_example.txt ├── biolatency.py ├── biolatency_example.txt ├── biolatpcts.py ├── biolatpcts_example.txt ├── biopattern.py ├── biopattern_example.txt ├── biosnoop.lua ├── biosnoop.py ├── biosnoop_example.txt ├── biotop.py ├── biotop_example.txt ├── bitesize.py ├── bitesize_example.txt ├── bpflist.py ├── bpflist_example.txt ├── btrfsdist.py ├── btrfsdist_example.txt ├── btrfsslower.py ├── btrfsslower_example.txt ├── cachestat.py ├── cachestat_example.txt ├── cachetop.py ├── cachetop_example.txt ├── capable.py ├── capable_example.txt ├── cobjnew.sh ├── cobjnew_example.txt ├── compactsnoop.py ├── compactsnoop_example.txt ├── cpudist.py ├── cpudist_example.txt ├── cpuunclaimed.py ├── cpuunclaimed_example.txt ├── criticalstat.py ├── criticalstat_example.txt ├── cthreads_example.txt ├── dbslower.py ├── dbslower_example.txt ├── dbstat.py ├── dbstat_example.txt ├── dcsnoop.py ├── dcsnoop_example.txt ├── dcstat.py ├── dcstat_example.txt ├── deadlock.c ├── deadlock.py ├── deadlock_example.txt ├── dirtop.py ├── dirtop_example.txt ├── drsnoop.py ├── drsnoop_example.txt ├── execsnoop.py ├── execsnoop_example.txt ├── exitsnoop.py ├── exitsnoop_example.txt ├── ext4dist.py ├── ext4dist_example.txt ├── ext4slower.py ├── ext4slower_example.txt ├── f2fsslower.py ├── f2fsslower_example.txt ├── filegone.py ├── filegone_example.txt ├── filelife.py ├── filelife_example.txt ├── fileslower.py ├── fileslower_example.txt ├── filetop.py ├── filetop_example.txt ├── funccount.py ├── funccount_example.txt ├── funcinterval.py ├── funcinterval_example.txt ├── funclatency.py ├── funclatency_example.txt ├── funcslower.py ├── funcslower_example.txt ├── gethostlatency.py ├── gethostlatency_example.txt ├── hardirqs.py ├── hardirqs_example.txt ├── inject.py ├── inject_example.txt ├── javacalls.sh ├── javacalls_example.txt ├── javaflow.sh ├── javaflow_example.txt ├── javagc.sh ├── javagc_example.txt ├── javaobjnew.sh ├── javaobjnew_example.txt ├── javastat.sh ├── javastat_example.txt ├── javathreads.sh ├── javathreads_example.txt ├── killsnoop.py ├── killsnoop_example.txt ├── klockstat.py ├── klockstat_example.txt ├── kvmexit.py ├── kvmexit_example.txt ├── lib ├── CMakeLists.txt ├── ucalls.py ├── ucalls_example.txt ├── uflow.py ├── uflow_example.txt ├── ugc.py ├── ugc_example.txt ├── uobjnew.py ├── uobjnew_example.txt ├── ustat.py ├── ustat_example.txt ├── uthreads.py └── uthreads_example.txt ├── llcstat.py ├── llcstat_example.txt ├── mdflush.py ├── mdflush_example.txt ├── memleak.py ├── memleak_example.txt ├── mountsnoop.py ├── mountsnoop_example.txt ├── mysqld_qslower.py ├── mysqld_qslower_example.txt ├── netqtop.c ├── netqtop.py ├── netqtop_example.txt ├── nfsdist.py ├── nfsdist_example.txt ├── nfsslower.py ├── nfsslower_example.txt ├── nodegc.sh ├── nodegc_example.txt ├── nodestat.sh ├── nodestat_example.txt ├── offcputime.py ├── offcputime_example.txt ├── offwaketime.py ├── offwaketime_example.txt ├── old ├── CMakeLists.txt ├── bashreadline.py ├── biosnoop.py ├── compactsnoop.py ├── filegone.py ├── filelife.py ├── gethostlatency.py ├── hardirqs.py ├── killsnoop.py ├── memleak.py ├── offcputime.py ├── offwaketime.py ├── oomkill.py ├── opensnoop.py ├── profile.py ├── profile_example.txt ├── softirqs.py ├── stackcount.py ├── stacksnoop.py ├── statsnoop.py ├── syncsnoop.py ├── tcpaccept.py ├── tcpconnect.py └── wakeuptime.py ├── oomkill.py ├── oomkill_example.txt ├── opensnoop.py ├── opensnoop_example.txt ├── perlcalls.sh ├── perlcalls_example.txt ├── perlflow.sh ├── perlflow_example.txt ├── perlstat.sh ├── perlstat_example.txt ├── phpcalls.sh ├── phpcalls_example.txt ├── phpflow.sh ├── phpflow_example.txt ├── phpstat.sh ├── phpstat_example.txt ├── pidpersec.py ├── pidpersec_example.txt ├── ppchcalls.py ├── ppchcalls_example.txt ├── profile.py ├── profile_example.txt ├── pythoncalls.sh ├── pythoncalls_example.txt ├── pythonflow.sh ├── pythonflow_example.txt ├── pythongc.sh ├── pythongc_example.txt ├── pythonstat.sh ├── pythonstat_example.txt ├── rdmaucma.py ├── rdmaucma_example.txt ├── readahead.py ├── readahead_example.txt ├── reset-trace.sh ├── reset-trace_example.txt ├── rubycalls.sh ├── rubycalls_example.txt ├── rubyflow.sh ├── rubyflow_example.txt ├── rubygc.sh ├── rubygc_example.txt ├── rubyobjnew.sh ├── rubyobjnew_example.txt ├── rubystat.sh ├── rubystat_example.txt ├── runqlat.py ├── runqlat_example.txt ├── runqlen.py ├── runqlen_example.txt ├── runqslower.py ├── runqslower_example.txt ├── shmsnoop.py ├── shmsnoop_example.txt ├── slabratetop.py ├── slabratetop_example.txt ├── sofdsnoop.py ├── sofdsnoop_example.txt ├── softirqs.py ├── softirqs_example.txt ├── solisten.py ├── solisten_example.txt ├── sslsniff.py ├── sslsniff_example.txt ├── stackcount.py ├── stackcount_example.txt ├── stacksnoop.lua ├── statsnoop.py ├── statsnoop_example.txt ├── swapin.py ├── swapin_example.txt ├── syncsnoop.py ├── syncsnoop_example.txt ├── syscount.py ├── syscount_example.txt ├── tclcalls.sh ├── tclcalls_example.txt ├── tclflow.sh ├── tclflow_example.txt ├── tclobjnew.sh ├── tclobjnew_example.txt ├── tclstat.sh ├── tclstat_example.txt ├── tcpaccept.py ├── tcpaccept_example.txt ├── tcpcong.py ├── tcpcong_example.txt ├── tcpconnect.py ├── tcpconnect_example.txt ├── tcpconnlat.py ├── tcpconnlat_example.txt ├── tcpdrop.py ├── tcpdrop_example.txt ├── tcplife.lua ├── tcplife.py ├── tcplife_example.txt ├── tcpretrans.py ├── tcpretrans_example.txt ├── tcprtt.py ├── tcprtt_example.txt ├── tcpstates.py ├── tcpstates_example.txt ├── tcpsubnet.py ├── tcpsubnet_example.txt ├── tcpsynbl.py ├── tcpsynbl_example.txt ├── tcptop.py ├── tcptop_example.txt ├── tcptracer.py ├── tcptracer_example.txt ├── threadsnoop.py ├── threadsnoop_example.txt ├── tplist.py ├── tplist_example.txt ├── trace.py ├── trace_example.txt ├── ttysnoop.py ├── ttysnoop_example.txt ├── vfscount.py ├── vfscount_example.txt ├── vfsstat.py ├── vfsstat_example.txt ├── virtiostat.py ├── virtiostat_example.txt ├── wakeuptime.py ├── wakeuptime_example.txt ├── wqlat.py ├── wqlat_example.txt ├── xfsdist.py ├── xfsdist_example.txt ├── xfsslower.py ├── xfsslower_example.txt ├── zfsdist.py ├── zfsdist_example.txt ├── zfsslower.py └── zfsslower_example.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/bcc-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/.github/workflows/bcc-test.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING-SCRIPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/CONTRIBUTING-SCRIPTS.md -------------------------------------------------------------------------------- /FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/FAQ.txt -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/LINKS.md -------------------------------------------------------------------------------- /QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/QUICKSTART.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/README.md -------------------------------------------------------------------------------- /SPECS/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/SPECS/Dockerfile.fedora -------------------------------------------------------------------------------- /SPECS/bcc+clang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/SPECS/bcc+clang.spec -------------------------------------------------------------------------------- /SPECS/bcc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/SPECS/bcc.spec -------------------------------------------------------------------------------- /cmake/CmakeUninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/CmakeUninstall.cmake.in -------------------------------------------------------------------------------- /cmake/FindCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/FindCompilerFlag.cmake -------------------------------------------------------------------------------- /cmake/FindKernelHeaders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/FindKernelHeaders.cmake -------------------------------------------------------------------------------- /cmake/FindLibBpf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/FindLibBpf.cmake -------------------------------------------------------------------------------- /cmake/FindLibDebuginfod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/FindLibDebuginfod.cmake -------------------------------------------------------------------------------- /cmake/FindLibElf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/FindLibElf.cmake -------------------------------------------------------------------------------- /cmake/FindLibLzma.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/FindLibLzma.cmake -------------------------------------------------------------------------------- /cmake/FindLuaJIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/FindLuaJIT.cmake -------------------------------------------------------------------------------- /cmake/bump_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/bump_version.cmake -------------------------------------------------------------------------------- /cmake/clang_libs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/clang_libs.cmake -------------------------------------------------------------------------------- /cmake/static_libstdc++.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/static_libstdc++.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /debian/bcc-lua.install: -------------------------------------------------------------------------------- 1 | usr/bin/bcc-lua 2 | -------------------------------------------------------------------------------- /debian/bcc-tools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/debian/bcc-tools.install -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/debian/docs -------------------------------------------------------------------------------- /debian/libbcc-examples.install: -------------------------------------------------------------------------------- 1 | usr/share/bcc/examples/* 2 | -------------------------------------------------------------------------------- /debian/libbcc.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/debian/libbcc.install -------------------------------------------------------------------------------- /debian/python-bcc.install: -------------------------------------------------------------------------------- 1 | usr/lib/python3* 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /docker/Dockerfile.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docker/Dockerfile.debian -------------------------------------------------------------------------------- /docker/Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docker/Dockerfile.ubuntu -------------------------------------------------------------------------------- /docker/build/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docker/build/Dockerfile.fedora -------------------------------------------------------------------------------- /docker/build/Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docker/build/Dockerfile.ubuntu -------------------------------------------------------------------------------- /docs/kernel-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docs/kernel-versions.md -------------------------------------------------------------------------------- /docs/kernel_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docs/kernel_config.md -------------------------------------------------------------------------------- /docs/reference_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docs/reference_guide.md -------------------------------------------------------------------------------- /docs/special_filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docs/special_filtering.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cgroupid/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cgroupid/Dockerfile -------------------------------------------------------------------------------- /examples/cgroupid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cgroupid/Makefile -------------------------------------------------------------------------------- /examples/cgroupid/cgroupid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cgroupid/cgroupid.c -------------------------------------------------------------------------------- /examples/cpp/CGroupTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/CGroupTest.cc -------------------------------------------------------------------------------- /examples/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpp/HelloWorld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/HelloWorld.cc -------------------------------------------------------------------------------- /examples/cpp/KFuncExample.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/KFuncExample.cc -------------------------------------------------------------------------------- /examples/cpp/KModRetExample.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/KModRetExample.cc -------------------------------------------------------------------------------- /examples/cpp/LLCStat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/LLCStat.cc -------------------------------------------------------------------------------- /examples/cpp/RandomRead.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/RandomRead.cc -------------------------------------------------------------------------------- /examples/cpp/TCPSendStack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/TCPSendStack.cc -------------------------------------------------------------------------------- /examples/cpp/TaskIterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/TaskIterator.cc -------------------------------------------------------------------------------- /examples/cpp/UseExternalMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/UseExternalMap.cc -------------------------------------------------------------------------------- /examples/cpp/pyperf/PyPerf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/cpp/pyperf/PyPerf.cc -------------------------------------------------------------------------------- /examples/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/hello_world.py -------------------------------------------------------------------------------- /examples/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lua/bashreadline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/bashreadline.c -------------------------------------------------------------------------------- /examples/lua/bashreadline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/bashreadline.lua -------------------------------------------------------------------------------- /examples/lua/kprobe-write.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/kprobe-write.lua -------------------------------------------------------------------------------- /examples/lua/memleak.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/memleak.lua -------------------------------------------------------------------------------- /examples/lua/offcputime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/offcputime.lua -------------------------------------------------------------------------------- /examples/lua/sock-proto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/sock-proto.lua -------------------------------------------------------------------------------- /examples/lua/sock-protolen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/sock-protolen.lua -------------------------------------------------------------------------------- /examples/lua/strlen_count.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/strlen_count.lua -------------------------------------------------------------------------------- /examples/lua/task_switch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/task_switch.lua -------------------------------------------------------------------------------- /examples/lua/uprobe-tailkt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/uprobe-tailkt.lua -------------------------------------------------------------------------------- /examples/lua/usdt_ruby.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/lua/usdt_ruby.lua -------------------------------------------------------------------------------- /examples/networking/distributed_bridge/simulation.py: -------------------------------------------------------------------------------- 1 | ../simulation.py -------------------------------------------------------------------------------- /examples/networking/neighbor_sharing/simulation.py: -------------------------------------------------------------------------------- 1 | ../simulation.py -------------------------------------------------------------------------------- /examples/networking/sockmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/networking/sockmap.py -------------------------------------------------------------------------------- /examples/networking/tunnel_monitor/simulation.py: -------------------------------------------------------------------------------- 1 | ../simulation.py -------------------------------------------------------------------------------- /examples/networking/vlan_learning/simulation.py: -------------------------------------------------------------------------------- 1 | ../simulation.py -------------------------------------------------------------------------------- /examples/perf/ipc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/perf/ipc.py -------------------------------------------------------------------------------- /examples/tracing/biolatpcts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/biolatpcts.py -------------------------------------------------------------------------------- /examples/tracing/bitehist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/bitehist.py -------------------------------------------------------------------------------- /examples/tracing/dddos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/dddos.py -------------------------------------------------------------------------------- /examples/tracing/disksnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/disksnoop.py -------------------------------------------------------------------------------- /examples/tracing/lbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/lbr.py -------------------------------------------------------------------------------- /examples/tracing/nflatency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/nflatency.py -------------------------------------------------------------------------------- /examples/tracing/stacksnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/stacksnoop.py -------------------------------------------------------------------------------- /examples/tracing/task_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/task_switch.c -------------------------------------------------------------------------------- /examples/tracing/undump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/undump.py -------------------------------------------------------------------------------- /examples/tracing/vfsreadlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/vfsreadlat.c -------------------------------------------------------------------------------- /examples/tracing/vfsreadlat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/examples/tracing/vfsreadlat.py -------------------------------------------------------------------------------- /examples/usdt_sample/.gitignore: -------------------------------------------------------------------------------- 1 | **/build*/ -------------------------------------------------------------------------------- /images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/images/logo1.png -------------------------------------------------------------------------------- /images/logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/images/logo1.svg -------------------------------------------------------------------------------- /images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/images/logo2.png -------------------------------------------------------------------------------- /images/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/images/logo2.svg -------------------------------------------------------------------------------- /introspection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/introspection/CMakeLists.txt -------------------------------------------------------------------------------- /introspection/bps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/introspection/bps.c -------------------------------------------------------------------------------- /introspection/bps_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/introspection/bps_example.txt -------------------------------------------------------------------------------- /libbpf-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/.gitignore -------------------------------------------------------------------------------- /libbpf-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/Makefile -------------------------------------------------------------------------------- /libbpf-tools/Makefile.btfgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/Makefile.btfgen -------------------------------------------------------------------------------- /libbpf-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/README.md -------------------------------------------------------------------------------- /libbpf-tools/arm64/vmlinux.h: -------------------------------------------------------------------------------- 1 | vmlinux_608.h -------------------------------------------------------------------------------- /libbpf-tools/bashreadline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bashreadline.c -------------------------------------------------------------------------------- /libbpf-tools/bashreadline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bashreadline.h -------------------------------------------------------------------------------- /libbpf-tools/bindsnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bindsnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/bindsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bindsnoop.c -------------------------------------------------------------------------------- /libbpf-tools/bindsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bindsnoop.h -------------------------------------------------------------------------------- /libbpf-tools/biolatency.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biolatency.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/biolatency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biolatency.c -------------------------------------------------------------------------------- /libbpf-tools/biolatency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biolatency.h -------------------------------------------------------------------------------- /libbpf-tools/biopattern.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biopattern.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/biopattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biopattern.c -------------------------------------------------------------------------------- /libbpf-tools/biopattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biopattern.h -------------------------------------------------------------------------------- /libbpf-tools/biosnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biosnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/biosnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biosnoop.c -------------------------------------------------------------------------------- /libbpf-tools/biosnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biosnoop.h -------------------------------------------------------------------------------- /libbpf-tools/biostacks.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biostacks.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/biostacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biostacks.c -------------------------------------------------------------------------------- /libbpf-tools/biostacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biostacks.h -------------------------------------------------------------------------------- /libbpf-tools/biotop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biotop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/biotop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biotop.c -------------------------------------------------------------------------------- /libbpf-tools/biotop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/biotop.h -------------------------------------------------------------------------------- /libbpf-tools/bitesize.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bitesize.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/bitesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bitesize.c -------------------------------------------------------------------------------- /libbpf-tools/bitesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bitesize.h -------------------------------------------------------------------------------- /libbpf-tools/bits.bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/bits.bpf.h -------------------------------------------------------------------------------- /libbpf-tools/blk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/blk_types.h -------------------------------------------------------------------------------- /libbpf-tools/btf_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/btf_helpers.c -------------------------------------------------------------------------------- /libbpf-tools/btf_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/btf_helpers.h -------------------------------------------------------------------------------- /libbpf-tools/cachestat.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cachestat.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/cachestat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cachestat.c -------------------------------------------------------------------------------- /libbpf-tools/capable.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/capable.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/capable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/capable.c -------------------------------------------------------------------------------- /libbpf-tools/capable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/capable.h -------------------------------------------------------------------------------- /libbpf-tools/compat.bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/compat.bpf.h -------------------------------------------------------------------------------- /libbpf-tools/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/compat.c -------------------------------------------------------------------------------- /libbpf-tools/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/compat.h -------------------------------------------------------------------------------- /libbpf-tools/core_fixes.bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/core_fixes.bpf.h -------------------------------------------------------------------------------- /libbpf-tools/cpudist.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cpudist.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/cpudist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cpudist.c -------------------------------------------------------------------------------- /libbpf-tools/cpudist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cpudist.h -------------------------------------------------------------------------------- /libbpf-tools/cpufreq.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cpufreq.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/cpufreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cpufreq.c -------------------------------------------------------------------------------- /libbpf-tools/cpufreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/cpufreq.h -------------------------------------------------------------------------------- /libbpf-tools/drsnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/drsnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/drsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/drsnoop.c -------------------------------------------------------------------------------- /libbpf-tools/drsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/drsnoop.h -------------------------------------------------------------------------------- /libbpf-tools/errno_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/errno_helpers.c -------------------------------------------------------------------------------- /libbpf-tools/errno_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/errno_helpers.h -------------------------------------------------------------------------------- /libbpf-tools/execsnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/execsnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/execsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/execsnoop.c -------------------------------------------------------------------------------- /libbpf-tools/execsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/execsnoop.h -------------------------------------------------------------------------------- /libbpf-tools/exitsnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/exitsnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/exitsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/exitsnoop.c -------------------------------------------------------------------------------- /libbpf-tools/exitsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/exitsnoop.h -------------------------------------------------------------------------------- /libbpf-tools/filelife.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/filelife.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/filelife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/filelife.c -------------------------------------------------------------------------------- /libbpf-tools/filelife.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/filelife.h -------------------------------------------------------------------------------- /libbpf-tools/filetop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/filetop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/filetop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/filetop.c -------------------------------------------------------------------------------- /libbpf-tools/filetop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/filetop.h -------------------------------------------------------------------------------- /libbpf-tools/fsdist.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/fsdist.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/fsdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/fsdist.c -------------------------------------------------------------------------------- /libbpf-tools/fsdist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/fsdist.h -------------------------------------------------------------------------------- /libbpf-tools/fsslower.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/fsslower.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/fsslower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/fsslower.c -------------------------------------------------------------------------------- /libbpf-tools/fsslower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/fsslower.h -------------------------------------------------------------------------------- /libbpf-tools/funclatency.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/funclatency.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/funclatency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/funclatency.c -------------------------------------------------------------------------------- /libbpf-tools/funclatency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/funclatency.h -------------------------------------------------------------------------------- /libbpf-tools/futexctn.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/futexctn.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/futexctn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/futexctn.c -------------------------------------------------------------------------------- /libbpf-tools/futexctn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/futexctn.h -------------------------------------------------------------------------------- /libbpf-tools/gethostlatency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/gethostlatency.c -------------------------------------------------------------------------------- /libbpf-tools/gethostlatency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/gethostlatency.h -------------------------------------------------------------------------------- /libbpf-tools/hardirqs.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/hardirqs.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/hardirqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/hardirqs.c -------------------------------------------------------------------------------- /libbpf-tools/hardirqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/hardirqs.h -------------------------------------------------------------------------------- /libbpf-tools/javagc.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/javagc.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/javagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/javagc.c -------------------------------------------------------------------------------- /libbpf-tools/javagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/javagc.h -------------------------------------------------------------------------------- /libbpf-tools/kernel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/kernel.config -------------------------------------------------------------------------------- /libbpf-tools/klockstat.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/klockstat.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/klockstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/klockstat.c -------------------------------------------------------------------------------- /libbpf-tools/klockstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/klockstat.h -------------------------------------------------------------------------------- /libbpf-tools/ksnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/ksnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/ksnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/ksnoop.c -------------------------------------------------------------------------------- /libbpf-tools/ksnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/ksnoop.h -------------------------------------------------------------------------------- /libbpf-tools/llcstat.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/llcstat.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/llcstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/llcstat.c -------------------------------------------------------------------------------- /libbpf-tools/llcstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/llcstat.h -------------------------------------------------------------------------------- /libbpf-tools/loongarch/vmlinux.h: -------------------------------------------------------------------------------- 1 | vmlinux_602.h -------------------------------------------------------------------------------- /libbpf-tools/map_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/map_helpers.c -------------------------------------------------------------------------------- /libbpf-tools/map_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/map_helpers.h -------------------------------------------------------------------------------- /libbpf-tools/maps.bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/maps.bpf.h -------------------------------------------------------------------------------- /libbpf-tools/mdflush.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/mdflush.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/mdflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/mdflush.c -------------------------------------------------------------------------------- /libbpf-tools/mdflush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/mdflush.h -------------------------------------------------------------------------------- /libbpf-tools/memleak.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/memleak.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/memleak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/memleak.c -------------------------------------------------------------------------------- /libbpf-tools/memleak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/memleak.h -------------------------------------------------------------------------------- /libbpf-tools/mountsnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/mountsnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/mountsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/mountsnoop.c -------------------------------------------------------------------------------- /libbpf-tools/mountsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/mountsnoop.h -------------------------------------------------------------------------------- /libbpf-tools/numamove.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/numamove.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/numamove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/numamove.c -------------------------------------------------------------------------------- /libbpf-tools/offcputime.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/offcputime.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/offcputime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/offcputime.c -------------------------------------------------------------------------------- /libbpf-tools/offcputime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/offcputime.h -------------------------------------------------------------------------------- /libbpf-tools/oomkill.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/oomkill.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/oomkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/oomkill.c -------------------------------------------------------------------------------- /libbpf-tools/oomkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/oomkill.h -------------------------------------------------------------------------------- /libbpf-tools/opensnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/opensnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/opensnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/opensnoop.c -------------------------------------------------------------------------------- /libbpf-tools/opensnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/opensnoop.h -------------------------------------------------------------------------------- /libbpf-tools/powerpc/vmlinux.h: -------------------------------------------------------------------------------- 1 | vmlinux_660.h -------------------------------------------------------------------------------- /libbpf-tools/profile.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/profile.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/profile.c -------------------------------------------------------------------------------- /libbpf-tools/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/profile.h -------------------------------------------------------------------------------- /libbpf-tools/readahead.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/readahead.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/readahead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/readahead.c -------------------------------------------------------------------------------- /libbpf-tools/readahead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/readahead.h -------------------------------------------------------------------------------- /libbpf-tools/riscv/vmlinux.h: -------------------------------------------------------------------------------- 1 | vmlinux_602.h -------------------------------------------------------------------------------- /libbpf-tools/runqlat.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqlat.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/runqlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqlat.c -------------------------------------------------------------------------------- /libbpf-tools/runqlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqlat.h -------------------------------------------------------------------------------- /libbpf-tools/runqlen.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqlen.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/runqlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqlen.c -------------------------------------------------------------------------------- /libbpf-tools/runqlen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqlen.h -------------------------------------------------------------------------------- /libbpf-tools/runqslower.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqslower.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/runqslower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqslower.c -------------------------------------------------------------------------------- /libbpf-tools/runqslower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/runqslower.h -------------------------------------------------------------------------------- /libbpf-tools/s390/vmlinux.h: -------------------------------------------------------------------------------- 1 | vmlinux_6413.h -------------------------------------------------------------------------------- /libbpf-tools/sigsnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/sigsnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/sigsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/sigsnoop.c -------------------------------------------------------------------------------- /libbpf-tools/sigsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/sigsnoop.h -------------------------------------------------------------------------------- /libbpf-tools/slabratetop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/slabratetop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/slabratetop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/slabratetop.c -------------------------------------------------------------------------------- /libbpf-tools/slabratetop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/slabratetop.h -------------------------------------------------------------------------------- /libbpf-tools/softirqs.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/softirqs.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/softirqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/softirqs.c -------------------------------------------------------------------------------- /libbpf-tools/softirqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/softirqs.h -------------------------------------------------------------------------------- /libbpf-tools/solisten.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/solisten.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/solisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/solisten.c -------------------------------------------------------------------------------- /libbpf-tools/solisten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/solisten.h -------------------------------------------------------------------------------- /libbpf-tools/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/stat.h -------------------------------------------------------------------------------- /libbpf-tools/statsnoop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/statsnoop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/statsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/statsnoop.c -------------------------------------------------------------------------------- /libbpf-tools/statsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/statsnoop.h -------------------------------------------------------------------------------- /libbpf-tools/syscall_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/syscall_helpers.c -------------------------------------------------------------------------------- /libbpf-tools/syscall_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/syscall_helpers.h -------------------------------------------------------------------------------- /libbpf-tools/syscount.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/syscount.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/syscount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/syscount.c -------------------------------------------------------------------------------- /libbpf-tools/syscount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/syscount.h -------------------------------------------------------------------------------- /libbpf-tools/tcpconnect.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpconnect.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcpconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpconnect.c -------------------------------------------------------------------------------- /libbpf-tools/tcpconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpconnect.h -------------------------------------------------------------------------------- /libbpf-tools/tcpconnlat.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpconnlat.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcpconnlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpconnlat.c -------------------------------------------------------------------------------- /libbpf-tools/tcpconnlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpconnlat.h -------------------------------------------------------------------------------- /libbpf-tools/tcplife.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcplife.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcplife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcplife.c -------------------------------------------------------------------------------- /libbpf-tools/tcplife.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcplife.h -------------------------------------------------------------------------------- /libbpf-tools/tcppktlat.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcppktlat.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcppktlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcppktlat.c -------------------------------------------------------------------------------- /libbpf-tools/tcppktlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcppktlat.h -------------------------------------------------------------------------------- /libbpf-tools/tcprtt.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcprtt.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcprtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcprtt.c -------------------------------------------------------------------------------- /libbpf-tools/tcprtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcprtt.h -------------------------------------------------------------------------------- /libbpf-tools/tcpstates.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpstates.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcpstates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpstates.c -------------------------------------------------------------------------------- /libbpf-tools/tcpstates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpstates.h -------------------------------------------------------------------------------- /libbpf-tools/tcpsynbl.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpsynbl.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcpsynbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpsynbl.c -------------------------------------------------------------------------------- /libbpf-tools/tcpsynbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcpsynbl.h -------------------------------------------------------------------------------- /libbpf-tools/tcptop.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcptop.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcptop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcptop.c -------------------------------------------------------------------------------- /libbpf-tools/tcptop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcptop.h -------------------------------------------------------------------------------- /libbpf-tools/tcptracer.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcptracer.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/tcptracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcptracer.c -------------------------------------------------------------------------------- /libbpf-tools/tcptracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/tcptracer.h -------------------------------------------------------------------------------- /libbpf-tools/trace_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/trace_helpers.c -------------------------------------------------------------------------------- /libbpf-tools/trace_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/trace_helpers.h -------------------------------------------------------------------------------- /libbpf-tools/uprobe_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/uprobe_helpers.c -------------------------------------------------------------------------------- /libbpf-tools/uprobe_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/uprobe_helpers.h -------------------------------------------------------------------------------- /libbpf-tools/vfsstat.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/vfsstat.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/vfsstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/vfsstat.c -------------------------------------------------------------------------------- /libbpf-tools/vfsstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/vfsstat.h -------------------------------------------------------------------------------- /libbpf-tools/wakeuptime.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/wakeuptime.bpf.c -------------------------------------------------------------------------------- /libbpf-tools/wakeuptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/wakeuptime.c -------------------------------------------------------------------------------- /libbpf-tools/wakeuptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/wakeuptime.h -------------------------------------------------------------------------------- /libbpf-tools/x86/vmlinux.h: -------------------------------------------------------------------------------- 1 | vmlinux_518.h -------------------------------------------------------------------------------- /libbpf-tools/x86/vmlinux_518.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/libbpf-tools/x86/vmlinux_518.h -------------------------------------------------------------------------------- /man/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(man8) 2 | -------------------------------------------------------------------------------- /man/man8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/CMakeLists.txt -------------------------------------------------------------------------------- /man/man8/argdist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/argdist.8 -------------------------------------------------------------------------------- /man/man8/bashreadline.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/bashreadline.8 -------------------------------------------------------------------------------- /man/man8/bindsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/bindsnoop.8 -------------------------------------------------------------------------------- /man/man8/biolatency.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/biolatency.8 -------------------------------------------------------------------------------- /man/man8/biolatpcts.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/biolatpcts.8 -------------------------------------------------------------------------------- /man/man8/biopattern.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/biopattern.8 -------------------------------------------------------------------------------- /man/man8/biosnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/biosnoop.8 -------------------------------------------------------------------------------- /man/man8/biotop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/biotop.8 -------------------------------------------------------------------------------- /man/man8/bitesize.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/bitesize.8 -------------------------------------------------------------------------------- /man/man8/bpflist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/bpflist.8 -------------------------------------------------------------------------------- /man/man8/bps.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/bps.8 -------------------------------------------------------------------------------- /man/man8/btrfsdist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/btrfsdist.8 -------------------------------------------------------------------------------- /man/man8/btrfsslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/btrfsslower.8 -------------------------------------------------------------------------------- /man/man8/cachestat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/cachestat.8 -------------------------------------------------------------------------------- /man/man8/cachetop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/cachetop.8 -------------------------------------------------------------------------------- /man/man8/capable.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/capable.8 -------------------------------------------------------------------------------- /man/man8/cobjnew.8: -------------------------------------------------------------------------------- 1 | uobjnew.8 -------------------------------------------------------------------------------- /man/man8/compactsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/compactsnoop.8 -------------------------------------------------------------------------------- /man/man8/cpudist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/cpudist.8 -------------------------------------------------------------------------------- /man/man8/cpuunclaimed.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/cpuunclaimed.8 -------------------------------------------------------------------------------- /man/man8/criticalstat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/criticalstat.8 -------------------------------------------------------------------------------- /man/man8/cthreads.8: -------------------------------------------------------------------------------- 1 | uthreads.8 -------------------------------------------------------------------------------- /man/man8/dbslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/dbslower.8 -------------------------------------------------------------------------------- /man/man8/dbstat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/dbstat.8 -------------------------------------------------------------------------------- /man/man8/dcsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/dcsnoop.8 -------------------------------------------------------------------------------- /man/man8/dcstat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/dcstat.8 -------------------------------------------------------------------------------- /man/man8/deadlock.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/deadlock.8 -------------------------------------------------------------------------------- /man/man8/dirtop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/dirtop.8 -------------------------------------------------------------------------------- /man/man8/drsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/drsnoop.8 -------------------------------------------------------------------------------- /man/man8/execsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/execsnoop.8 -------------------------------------------------------------------------------- /man/man8/exitsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/exitsnoop.8 -------------------------------------------------------------------------------- /man/man8/ext4dist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ext4dist.8 -------------------------------------------------------------------------------- /man/man8/ext4slower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ext4slower.8 -------------------------------------------------------------------------------- /man/man8/f2fsslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/f2fsslower.8 -------------------------------------------------------------------------------- /man/man8/filegone.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/filegone.8 -------------------------------------------------------------------------------- /man/man8/filelife.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/filelife.8 -------------------------------------------------------------------------------- /man/man8/fileslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/fileslower.8 -------------------------------------------------------------------------------- /man/man8/filetop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/filetop.8 -------------------------------------------------------------------------------- /man/man8/funccount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/funccount.8 -------------------------------------------------------------------------------- /man/man8/funcinterval.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/funcinterval.8 -------------------------------------------------------------------------------- /man/man8/funclatency.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/funclatency.8 -------------------------------------------------------------------------------- /man/man8/funcslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/funcslower.8 -------------------------------------------------------------------------------- /man/man8/gethostlatency.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/gethostlatency.8 -------------------------------------------------------------------------------- /man/man8/hardirqs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/hardirqs.8 -------------------------------------------------------------------------------- /man/man8/inject.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/inject.8 -------------------------------------------------------------------------------- /man/man8/javacalls.8: -------------------------------------------------------------------------------- 1 | ucalls.8 -------------------------------------------------------------------------------- /man/man8/javaflow.8: -------------------------------------------------------------------------------- 1 | uflow.8 -------------------------------------------------------------------------------- /man/man8/javagc.8: -------------------------------------------------------------------------------- 1 | ugc.8 -------------------------------------------------------------------------------- /man/man8/javaobjnew.8: -------------------------------------------------------------------------------- 1 | uobjnew.8 -------------------------------------------------------------------------------- /man/man8/javastat.8: -------------------------------------------------------------------------------- 1 | ustat.8 -------------------------------------------------------------------------------- /man/man8/javathreads.8: -------------------------------------------------------------------------------- 1 | uthreads.8 -------------------------------------------------------------------------------- /man/man8/killsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/killsnoop.8 -------------------------------------------------------------------------------- /man/man8/klockstat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/klockstat.8 -------------------------------------------------------------------------------- /man/man8/ksnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ksnoop.8 -------------------------------------------------------------------------------- /man/man8/kvmexit.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/kvmexit.8 -------------------------------------------------------------------------------- /man/man8/llcstat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/llcstat.8 -------------------------------------------------------------------------------- /man/man8/mdflush.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/mdflush.8 -------------------------------------------------------------------------------- /man/man8/memleak.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/memleak.8 -------------------------------------------------------------------------------- /man/man8/mountsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/mountsnoop.8 -------------------------------------------------------------------------------- /man/man8/mysqld_qslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/mysqld_qslower.8 -------------------------------------------------------------------------------- /man/man8/netqtop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/netqtop.8 -------------------------------------------------------------------------------- /man/man8/nfsdist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/nfsdist.8 -------------------------------------------------------------------------------- /man/man8/nfsslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/nfsslower.8 -------------------------------------------------------------------------------- /man/man8/nodegc.8: -------------------------------------------------------------------------------- 1 | ugc.8 -------------------------------------------------------------------------------- /man/man8/nodestat.8: -------------------------------------------------------------------------------- 1 | ustat.8 -------------------------------------------------------------------------------- /man/man8/offcputime.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/offcputime.8 -------------------------------------------------------------------------------- /man/man8/offwaketime.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/offwaketime.8 -------------------------------------------------------------------------------- /man/man8/oomkill.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/oomkill.8 -------------------------------------------------------------------------------- /man/man8/opensnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/opensnoop.8 -------------------------------------------------------------------------------- /man/man8/perlcalls.8: -------------------------------------------------------------------------------- 1 | ucalls.8 -------------------------------------------------------------------------------- /man/man8/perlflow.8: -------------------------------------------------------------------------------- 1 | uflow.8 -------------------------------------------------------------------------------- /man/man8/perlstat.8: -------------------------------------------------------------------------------- 1 | ustat.8 -------------------------------------------------------------------------------- /man/man8/phpcalls.8: -------------------------------------------------------------------------------- 1 | ucalls.8 -------------------------------------------------------------------------------- /man/man8/phpflow.8: -------------------------------------------------------------------------------- 1 | uflow.8 -------------------------------------------------------------------------------- /man/man8/phpstat.8: -------------------------------------------------------------------------------- 1 | ustat.8 -------------------------------------------------------------------------------- /man/man8/pidpersec.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/pidpersec.8 -------------------------------------------------------------------------------- /man/man8/ppchcalls.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ppchcalls.8 -------------------------------------------------------------------------------- /man/man8/profile.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/profile.8 -------------------------------------------------------------------------------- /man/man8/pythoncalls.8: -------------------------------------------------------------------------------- 1 | ucalls.8 -------------------------------------------------------------------------------- /man/man8/pythonflow.8: -------------------------------------------------------------------------------- 1 | uflow.8 -------------------------------------------------------------------------------- /man/man8/pythongc.8: -------------------------------------------------------------------------------- 1 | ugc.8 -------------------------------------------------------------------------------- /man/man8/pythonstat.8: -------------------------------------------------------------------------------- 1 | ustat.8 -------------------------------------------------------------------------------- /man/man8/rdmaucma.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/rdmaucma.8 -------------------------------------------------------------------------------- /man/man8/readahead.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/readahead.8 -------------------------------------------------------------------------------- /man/man8/reset-trace.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/reset-trace.8 -------------------------------------------------------------------------------- /man/man8/rubycalls.8: -------------------------------------------------------------------------------- 1 | ucalls.8 -------------------------------------------------------------------------------- /man/man8/rubyflow.8: -------------------------------------------------------------------------------- 1 | uflow.8 -------------------------------------------------------------------------------- /man/man8/rubygc.8: -------------------------------------------------------------------------------- 1 | ugc.8 -------------------------------------------------------------------------------- /man/man8/rubyobjnew.8: -------------------------------------------------------------------------------- 1 | uobjnew.8 -------------------------------------------------------------------------------- /man/man8/rubystat.8: -------------------------------------------------------------------------------- 1 | ustat.8 -------------------------------------------------------------------------------- /man/man8/runqlat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/runqlat.8 -------------------------------------------------------------------------------- /man/man8/runqlen.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/runqlen.8 -------------------------------------------------------------------------------- /man/man8/runqslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/runqslower.8 -------------------------------------------------------------------------------- /man/man8/shmsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/shmsnoop.8 -------------------------------------------------------------------------------- /man/man8/slabratetop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/slabratetop.8 -------------------------------------------------------------------------------- /man/man8/sofdsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/sofdsnoop.8 -------------------------------------------------------------------------------- /man/man8/softirqs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/softirqs.8 -------------------------------------------------------------------------------- /man/man8/solisten.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/solisten.8 -------------------------------------------------------------------------------- /man/man8/spfdsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/spfdsnoop.8 -------------------------------------------------------------------------------- /man/man8/sslsniff.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/sslsniff.8 -------------------------------------------------------------------------------- /man/man8/stackcount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/stackcount.8 -------------------------------------------------------------------------------- /man/man8/statsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/statsnoop.8 -------------------------------------------------------------------------------- /man/man8/swapin.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/swapin.8 -------------------------------------------------------------------------------- /man/man8/syncsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/syncsnoop.8 -------------------------------------------------------------------------------- /man/man8/syscount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/syscount.8 -------------------------------------------------------------------------------- /man/man8/tclcalls.8: -------------------------------------------------------------------------------- 1 | ucalls.8 -------------------------------------------------------------------------------- /man/man8/tclflow.8: -------------------------------------------------------------------------------- 1 | uflow.8 -------------------------------------------------------------------------------- /man/man8/tclobjnew.8: -------------------------------------------------------------------------------- 1 | uobjnew.8 -------------------------------------------------------------------------------- /man/man8/tclstat.8: -------------------------------------------------------------------------------- 1 | ustat.8 -------------------------------------------------------------------------------- /man/man8/tcpaccept.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpaccept.8 -------------------------------------------------------------------------------- /man/man8/tcpcong.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpcong.8 -------------------------------------------------------------------------------- /man/man8/tcpconnect.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpconnect.8 -------------------------------------------------------------------------------- /man/man8/tcpconnlat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpconnlat.8 -------------------------------------------------------------------------------- /man/man8/tcpdrop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpdrop.8 -------------------------------------------------------------------------------- /man/man8/tcplife.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcplife.8 -------------------------------------------------------------------------------- /man/man8/tcpretrans.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpretrans.8 -------------------------------------------------------------------------------- /man/man8/tcprtt.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcprtt.8 -------------------------------------------------------------------------------- /man/man8/tcpstates.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpstates.8 -------------------------------------------------------------------------------- /man/man8/tcpsubnet.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpsubnet.8 -------------------------------------------------------------------------------- /man/man8/tcpsynbl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcpsynbl.8 -------------------------------------------------------------------------------- /man/man8/tcptop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcptop.8 -------------------------------------------------------------------------------- /man/man8/tcptracer.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tcptracer.8 -------------------------------------------------------------------------------- /man/man8/threadsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/threadsnoop.8 -------------------------------------------------------------------------------- /man/man8/tplist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/tplist.8 -------------------------------------------------------------------------------- /man/man8/trace.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/trace.8 -------------------------------------------------------------------------------- /man/man8/ttysnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ttysnoop.8 -------------------------------------------------------------------------------- /man/man8/ucalls.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ucalls.8 -------------------------------------------------------------------------------- /man/man8/uflow.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/uflow.8 -------------------------------------------------------------------------------- /man/man8/ugc.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ugc.8 -------------------------------------------------------------------------------- /man/man8/uobjnew.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/uobjnew.8 -------------------------------------------------------------------------------- /man/man8/ustat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/ustat.8 -------------------------------------------------------------------------------- /man/man8/uthreads.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/uthreads.8 -------------------------------------------------------------------------------- /man/man8/vfscount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/vfscount.8 -------------------------------------------------------------------------------- /man/man8/vfsstat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/vfsstat.8 -------------------------------------------------------------------------------- /man/man8/virtiostat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/virtiostat.8 -------------------------------------------------------------------------------- /man/man8/wakeuptime.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/wakeuptime.8 -------------------------------------------------------------------------------- /man/man8/wqlat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/wqlat.8 -------------------------------------------------------------------------------- /man/man8/xfsdist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/xfsdist.8 -------------------------------------------------------------------------------- /man/man8/xfsslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/xfsslower.8 -------------------------------------------------------------------------------- /man/man8/zfsdist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/zfsdist.8 -------------------------------------------------------------------------------- /man/man8/zfsslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/man/man8/zfsslower.8 -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/bpf_demo.ks.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/bpf_demo.ks.erb -------------------------------------------------------------------------------- /scripts/build-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/build-deb.sh -------------------------------------------------------------------------------- /scripts/build-deb.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/build-deb.sh.in -------------------------------------------------------------------------------- /scripts/build-release-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/build-release-rpm.sh -------------------------------------------------------------------------------- /scripts/build-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/build-rpm.sh -------------------------------------------------------------------------------- /scripts/build_bpf_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/build_bpf_demo.sh -------------------------------------------------------------------------------- /scripts/c-style-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/c-style-check.sh -------------------------------------------------------------------------------- /scripts/check-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/check-helpers.sh -------------------------------------------------------------------------------- /scripts/docker/auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/docker/auth.sh -------------------------------------------------------------------------------- /scripts/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/docker/build.sh -------------------------------------------------------------------------------- /scripts/docker/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/docker/push.sh -------------------------------------------------------------------------------- /scripts/git-clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/git-clang-format -------------------------------------------------------------------------------- /scripts/git-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/git-tag.sh -------------------------------------------------------------------------------- /scripts/py-style-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/scripts/py-style-check.sh -------------------------------------------------------------------------------- /snap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/snap/README.md -------------------------------------------------------------------------------- /snap/local/bcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/snap/local/bcc-wrapper -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/README -------------------------------------------------------------------------------- /src/cc/api/BPF.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/api/BPF.cc -------------------------------------------------------------------------------- /src/cc/api/BPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/api/BPF.h -------------------------------------------------------------------------------- /src/cc/api/BPFTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/api/BPFTable.cc -------------------------------------------------------------------------------- /src/cc/api/BPFTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/api/BPFTable.h -------------------------------------------------------------------------------- /src/cc/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/api/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/bcc_btf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_btf.cc -------------------------------------------------------------------------------- /src/cc/bcc_btf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_btf.h -------------------------------------------------------------------------------- /src/cc/bcc_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_common.cc -------------------------------------------------------------------------------- /src/cc/bcc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_common.h -------------------------------------------------------------------------------- /src/cc/bcc_debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_debug.cc -------------------------------------------------------------------------------- /src/cc/bcc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_debug.h -------------------------------------------------------------------------------- /src/cc/bcc_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_elf.c -------------------------------------------------------------------------------- /src/cc/bcc_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_elf.h -------------------------------------------------------------------------------- /src/cc/bcc_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_exception.h -------------------------------------------------------------------------------- /src/cc/bcc_libbpf_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_libbpf_inc.h -------------------------------------------------------------------------------- /src/cc/bcc_perf_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_perf_map.c -------------------------------------------------------------------------------- /src/cc/bcc_perf_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_perf_map.h -------------------------------------------------------------------------------- /src/cc/bcc_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_proc.c -------------------------------------------------------------------------------- /src/cc/bcc_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_proc.h -------------------------------------------------------------------------------- /src/cc/bcc_syms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_syms.cc -------------------------------------------------------------------------------- /src/cc/bcc_syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_syms.h -------------------------------------------------------------------------------- /src/cc/bcc_usdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_usdt.h -------------------------------------------------------------------------------- /src/cc/bcc_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_version.h.in -------------------------------------------------------------------------------- /src/cc/bcc_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_zip.c -------------------------------------------------------------------------------- /src/cc/bcc_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bcc_zip.h -------------------------------------------------------------------------------- /src/cc/bpf_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bpf_module.cc -------------------------------------------------------------------------------- /src/cc/bpf_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bpf_module.h -------------------------------------------------------------------------------- /src/cc/bpf_module_rw_engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bpf_module_rw_engine.cc -------------------------------------------------------------------------------- /src/cc/bpffs_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/bpffs_table.cc -------------------------------------------------------------------------------- /src/cc/clang/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/clang/include/stdarg.h -------------------------------------------------------------------------------- /src/cc/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/common.cc -------------------------------------------------------------------------------- /src/cc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/common.h -------------------------------------------------------------------------------- /src/cc/export/bpf_workaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/export/bpf_workaround.h -------------------------------------------------------------------------------- /src/cc/export/footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/export/footer.h -------------------------------------------------------------------------------- /src/cc/export/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/export/helpers.h -------------------------------------------------------------------------------- /src/cc/export/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/export/proto.h -------------------------------------------------------------------------------- /src/cc/exported_files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/exported_files.cc -------------------------------------------------------------------------------- /src/cc/exported_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/exported_files.h -------------------------------------------------------------------------------- /src/cc/file_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/file_desc.h -------------------------------------------------------------------------------- /src/cc/libbcc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/libbcc.pc.in -------------------------------------------------------------------------------- /src/cc/libbpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/libbpf.c -------------------------------------------------------------------------------- /src/cc/libbpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/libbpf.h -------------------------------------------------------------------------------- /src/cc/link_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/link_all.cc -------------------------------------------------------------------------------- /src/cc/perf_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/perf_reader.c -------------------------------------------------------------------------------- /src/cc/perf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/perf_reader.h -------------------------------------------------------------------------------- /src/cc/setns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/setns.h -------------------------------------------------------------------------------- /src/cc/shared_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/shared_table.cc -------------------------------------------------------------------------------- /src/cc/syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/syms.h -------------------------------------------------------------------------------- /src/cc/table_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/table_desc.h -------------------------------------------------------------------------------- /src/cc/table_storage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/table_storage.cc -------------------------------------------------------------------------------- /src/cc/table_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/table_storage.h -------------------------------------------------------------------------------- /src/cc/table_storage_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/table_storage_impl.h -------------------------------------------------------------------------------- /src/cc/usdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/usdt.h -------------------------------------------------------------------------------- /src/cc/usdt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/usdt/CMakeLists.txt -------------------------------------------------------------------------------- /src/cc/usdt/usdt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/usdt/usdt.cc -------------------------------------------------------------------------------- /src/cc/usdt/usdt_args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/usdt/usdt_args.cc -------------------------------------------------------------------------------- /src/cc/vendor/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/vendor/optional.hpp -------------------------------------------------------------------------------- /src/cc/vendor/tinyformat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/cc/vendor/tinyformat.hpp -------------------------------------------------------------------------------- /src/lua/.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/.busted -------------------------------------------------------------------------------- /src/lua/.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/.luacheckrc -------------------------------------------------------------------------------- /src/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/CMakeLists.txt -------------------------------------------------------------------------------- /src/lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/README.md -------------------------------------------------------------------------------- /src/lua/bcc-probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc-probe -------------------------------------------------------------------------------- /src/lua/bcc/bpf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/bpf.lua -------------------------------------------------------------------------------- /src/lua/bcc/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/init.lua -------------------------------------------------------------------------------- /src/lua/bcc/libbcc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/libbcc.lua -------------------------------------------------------------------------------- /src/lua/bcc/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/run.lua -------------------------------------------------------------------------------- /src/lua/bcc/sym.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/sym.lua -------------------------------------------------------------------------------- /src/lua/bcc/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/table.lua -------------------------------------------------------------------------------- /src/lua/bcc/tracerpipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/tracerpipe.lua -------------------------------------------------------------------------------- /src/lua/bcc/usdt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/usdt.lua -------------------------------------------------------------------------------- /src/lua/bcc/vendor/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/vendor/helpers.lua -------------------------------------------------------------------------------- /src/lua/bcc/vendor/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/vendor/json.lua -------------------------------------------------------------------------------- /src/lua/bcc/vendor/posix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bcc/vendor/posix.lua -------------------------------------------------------------------------------- /src/lua/bpf-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf-scm-1.rockspec -------------------------------------------------------------------------------- /src/lua/bpf/bpf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/bpf.lua -------------------------------------------------------------------------------- /src/lua/bpf/builtins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/builtins.lua -------------------------------------------------------------------------------- /src/lua/bpf/cdef.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/cdef.lua -------------------------------------------------------------------------------- /src/lua/bpf/elf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/elf.lua -------------------------------------------------------------------------------- /src/lua/bpf/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/init.lua -------------------------------------------------------------------------------- /src/lua/bpf/ljbytecode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/ljbytecode.lua -------------------------------------------------------------------------------- /src/lua/bpf/proto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/proto.lua -------------------------------------------------------------------------------- /src/lua/bpf/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/spec/README.md -------------------------------------------------------------------------------- /src/lua/bpf/spec/elf_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/spec/elf_spec.lua -------------------------------------------------------------------------------- /src/lua/bpf/spec/helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/bpf/spec/helper.lua -------------------------------------------------------------------------------- /src/lua/squishy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/squishy -------------------------------------------------------------------------------- /src/lua/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/src/main.c -------------------------------------------------------------------------------- /src/lua/src/squish.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/lua/src/squish.lua -------------------------------------------------------------------------------- /src/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/python/bcc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/__init__.py -------------------------------------------------------------------------------- /src/python/bcc/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/containers.py -------------------------------------------------------------------------------- /src/python/bcc/disassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/disassembler.py -------------------------------------------------------------------------------- /src/python/bcc/libbcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/libbcc.py -------------------------------------------------------------------------------- /src/python/bcc/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/perf.py -------------------------------------------------------------------------------- /src/python/bcc/syscall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/syscall.py -------------------------------------------------------------------------------- /src/python/bcc/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/table.py -------------------------------------------------------------------------------- /src/python/bcc/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/tcp.py -------------------------------------------------------------------------------- /src/python/bcc/usdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/usdt.py -------------------------------------------------------------------------------- /src/python/bcc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/bcc/utils.py -------------------------------------------------------------------------------- /src/python/bcc/version.py.in: -------------------------------------------------------------------------------- 1 | __version__ = '@REVISION@' 2 | -------------------------------------------------------------------------------- /src/python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/src/python/setup.py.in -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cc/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/catch.hpp -------------------------------------------------------------------------------- /tests/cc/debuginfo_test_lib.cc: -------------------------------------------------------------------------------- 1 | extern "C" { 2 | 3 | int symbol() { return 0; } 4 | } 5 | -------------------------------------------------------------------------------- /tests/cc/dummy_proc_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/dummy_proc_map.txt -------------------------------------------------------------------------------- /tests/cc/test_array_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_array_table.cc -------------------------------------------------------------------------------- /tests/cc/test_bpf_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_bpf_table.cc -------------------------------------------------------------------------------- /tests/cc/test_c_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_c_api.cc -------------------------------------------------------------------------------- /tests/cc/test_cg_storage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_cg_storage.cc -------------------------------------------------------------------------------- /tests/cc/test_hash_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_hash_table.cc -------------------------------------------------------------------------------- /tests/cc/test_libbcc.cc: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /tests/cc/test_map_in_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_map_in_map.cc -------------------------------------------------------------------------------- /tests/cc/test_perf_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_perf_event.cc -------------------------------------------------------------------------------- /tests/cc/test_pinned_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_pinned_table.cc -------------------------------------------------------------------------------- /tests/cc/test_prog_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_prog_table.cc -------------------------------------------------------------------------------- /tests/cc/test_shared_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_shared_table.cc -------------------------------------------------------------------------------- /tests/cc/test_sk_storage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_sk_storage.cc -------------------------------------------------------------------------------- /tests/cc/test_sock_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_sock_table.cc -------------------------------------------------------------------------------- /tests/cc/test_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_static.c -------------------------------------------------------------------------------- /tests/cc/test_usdt_args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_usdt_args.cc -------------------------------------------------------------------------------- /tests/cc/test_usdt_probes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_usdt_probes.cc -------------------------------------------------------------------------------- /tests/cc/test_zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/test_zip.cc -------------------------------------------------------------------------------- /tests/cc/usdt_test_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/usdt_test_lib.cc -------------------------------------------------------------------------------- /tests/cc/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/cc/utils.cc -------------------------------------------------------------------------------- /tests/lua/.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/.busted -------------------------------------------------------------------------------- /tests/lua/.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/.luacheckrc -------------------------------------------------------------------------------- /tests/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/CMakeLists.txt -------------------------------------------------------------------------------- /tests/lua/luaunit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/luaunit.lua -------------------------------------------------------------------------------- /tests/lua/spec: -------------------------------------------------------------------------------- 1 | src/lua/bpf/spec -------------------------------------------------------------------------------- /tests/lua/test_clang.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/test_clang.lua -------------------------------------------------------------------------------- /tests/lua/test_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/test_dump.lua -------------------------------------------------------------------------------- /tests/lua/test_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/test_helper.lua -------------------------------------------------------------------------------- /tests/lua/test_standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/test_standalone.sh -------------------------------------------------------------------------------- /tests/lua/test_uprobes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/lua/test_uprobes.lua -------------------------------------------------------------------------------- /tests/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/CMakeLists.txt -------------------------------------------------------------------------------- /tests/python/dummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/dummy.cc -------------------------------------------------------------------------------- /tests/python/simulation.py: -------------------------------------------------------------------------------- 1 | ../../examples/networking/simulation.py -------------------------------------------------------------------------------- /tests/python/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_array.py -------------------------------------------------------------------------------- /tests/python/test_bpf_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_bpf_log.py -------------------------------------------------------------------------------- /tests/python/test_brb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_brb.c -------------------------------------------------------------------------------- /tests/python/test_brb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_brb.py -------------------------------------------------------------------------------- /tests/python/test_brb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_brb2.c -------------------------------------------------------------------------------- /tests/python/test_brb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_brb2.py -------------------------------------------------------------------------------- /tests/python/test_call1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_call1.c -------------------------------------------------------------------------------- /tests/python/test_call1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_call1.py -------------------------------------------------------------------------------- /tests/python/test_clang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_clang.py -------------------------------------------------------------------------------- /tests/python/test_debuginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_debuginfo.py -------------------------------------------------------------------------------- /tests/python/test_dump_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_dump_func.py -------------------------------------------------------------------------------- /tests/python/test_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_flags.py -------------------------------------------------------------------------------- /tests/python/test_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_histogram.py -------------------------------------------------------------------------------- /tests/python/test_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_license.py -------------------------------------------------------------------------------- /tests/python/test_lpm_trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_lpm_trie.py -------------------------------------------------------------------------------- /tests/python/test_lru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_lru.py -------------------------------------------------------------------------------- /tests/python/test_percpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_percpu.py -------------------------------------------------------------------------------- /tests/python/test_ringbuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_ringbuf.py -------------------------------------------------------------------------------- /tests/python/test_rlimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_rlimit.py -------------------------------------------------------------------------------- /tests/python/test_stackid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_stackid.py -------------------------------------------------------------------------------- /tests/python/test_stat1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_stat1.c -------------------------------------------------------------------------------- /tests/python/test_stat1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_stat1.py -------------------------------------------------------------------------------- /tests/python/test_trace2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_trace2.c -------------------------------------------------------------------------------- /tests/python/test_trace2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_trace2.py -------------------------------------------------------------------------------- /tests/python/test_trace3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_trace3.c -------------------------------------------------------------------------------- /tests/python/test_trace3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_trace3.py -------------------------------------------------------------------------------- /tests/python/test_trace4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_trace4.py -------------------------------------------------------------------------------- /tests/python/test_uprobes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_uprobes.py -------------------------------------------------------------------------------- /tests/python/test_uprobes2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_uprobes2.py -------------------------------------------------------------------------------- /tests/python/test_usdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_usdt.py -------------------------------------------------------------------------------- /tests/python/test_usdt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_usdt2.py -------------------------------------------------------------------------------- /tests/python/test_usdt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_usdt3.py -------------------------------------------------------------------------------- /tests/python/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_utils.py -------------------------------------------------------------------------------- /tests/python/test_xlate1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_xlate1.c -------------------------------------------------------------------------------- /tests/python/test_xlate1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/test_xlate1.py -------------------------------------------------------------------------------- /tests/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/python/utils.py -------------------------------------------------------------------------------- /tests/wrapper.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tests/wrapper.sh.in -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/argdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/argdist.py -------------------------------------------------------------------------------- /tools/argdist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/argdist_example.txt -------------------------------------------------------------------------------- /tools/bashreadline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bashreadline.py -------------------------------------------------------------------------------- /tools/bashreadline_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bashreadline_example.txt -------------------------------------------------------------------------------- /tools/bindsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bindsnoop.py -------------------------------------------------------------------------------- /tools/bindsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bindsnoop_example.txt -------------------------------------------------------------------------------- /tools/biolatency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biolatency.py -------------------------------------------------------------------------------- /tools/biolatency_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biolatency_example.txt -------------------------------------------------------------------------------- /tools/biolatpcts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biolatpcts.py -------------------------------------------------------------------------------- /tools/biolatpcts_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biolatpcts_example.txt -------------------------------------------------------------------------------- /tools/biopattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biopattern.py -------------------------------------------------------------------------------- /tools/biopattern_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biopattern_example.txt -------------------------------------------------------------------------------- /tools/biosnoop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biosnoop.lua -------------------------------------------------------------------------------- /tools/biosnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biosnoop.py -------------------------------------------------------------------------------- /tools/biosnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biosnoop_example.txt -------------------------------------------------------------------------------- /tools/biotop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biotop.py -------------------------------------------------------------------------------- /tools/biotop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/biotop_example.txt -------------------------------------------------------------------------------- /tools/bitesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bitesize.py -------------------------------------------------------------------------------- /tools/bitesize_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bitesize_example.txt -------------------------------------------------------------------------------- /tools/bpflist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bpflist.py -------------------------------------------------------------------------------- /tools/bpflist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/bpflist_example.txt -------------------------------------------------------------------------------- /tools/btrfsdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/btrfsdist.py -------------------------------------------------------------------------------- /tools/btrfsdist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/btrfsdist_example.txt -------------------------------------------------------------------------------- /tools/btrfsslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/btrfsslower.py -------------------------------------------------------------------------------- /tools/btrfsslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/btrfsslower_example.txt -------------------------------------------------------------------------------- /tools/cachestat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cachestat.py -------------------------------------------------------------------------------- /tools/cachestat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cachestat_example.txt -------------------------------------------------------------------------------- /tools/cachetop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cachetop.py -------------------------------------------------------------------------------- /tools/cachetop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cachetop_example.txt -------------------------------------------------------------------------------- /tools/capable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/capable.py -------------------------------------------------------------------------------- /tools/capable_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/capable_example.txt -------------------------------------------------------------------------------- /tools/cobjnew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cobjnew.sh -------------------------------------------------------------------------------- /tools/cobjnew_example.txt: -------------------------------------------------------------------------------- 1 | lib/uobjnew_example.txt -------------------------------------------------------------------------------- /tools/compactsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/compactsnoop.py -------------------------------------------------------------------------------- /tools/compactsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/compactsnoop_example.txt -------------------------------------------------------------------------------- /tools/cpudist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cpudist.py -------------------------------------------------------------------------------- /tools/cpudist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cpudist_example.txt -------------------------------------------------------------------------------- /tools/cpuunclaimed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cpuunclaimed.py -------------------------------------------------------------------------------- /tools/cpuunclaimed_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/cpuunclaimed_example.txt -------------------------------------------------------------------------------- /tools/criticalstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/criticalstat.py -------------------------------------------------------------------------------- /tools/criticalstat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/criticalstat_example.txt -------------------------------------------------------------------------------- /tools/cthreads_example.txt: -------------------------------------------------------------------------------- 1 | lib/uthreads_example.txt -------------------------------------------------------------------------------- /tools/dbslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dbslower.py -------------------------------------------------------------------------------- /tools/dbslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dbslower_example.txt -------------------------------------------------------------------------------- /tools/dbstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dbstat.py -------------------------------------------------------------------------------- /tools/dbstat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dbstat_example.txt -------------------------------------------------------------------------------- /tools/dcsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dcsnoop.py -------------------------------------------------------------------------------- /tools/dcsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dcsnoop_example.txt -------------------------------------------------------------------------------- /tools/dcstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dcstat.py -------------------------------------------------------------------------------- /tools/dcstat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dcstat_example.txt -------------------------------------------------------------------------------- /tools/deadlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/deadlock.c -------------------------------------------------------------------------------- /tools/deadlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/deadlock.py -------------------------------------------------------------------------------- /tools/deadlock_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/deadlock_example.txt -------------------------------------------------------------------------------- /tools/dirtop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dirtop.py -------------------------------------------------------------------------------- /tools/dirtop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/dirtop_example.txt -------------------------------------------------------------------------------- /tools/drsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/drsnoop.py -------------------------------------------------------------------------------- /tools/drsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/drsnoop_example.txt -------------------------------------------------------------------------------- /tools/execsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/execsnoop.py -------------------------------------------------------------------------------- /tools/execsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/execsnoop_example.txt -------------------------------------------------------------------------------- /tools/exitsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/exitsnoop.py -------------------------------------------------------------------------------- /tools/exitsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/exitsnoop_example.txt -------------------------------------------------------------------------------- /tools/ext4dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ext4dist.py -------------------------------------------------------------------------------- /tools/ext4dist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ext4dist_example.txt -------------------------------------------------------------------------------- /tools/ext4slower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ext4slower.py -------------------------------------------------------------------------------- /tools/ext4slower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ext4slower_example.txt -------------------------------------------------------------------------------- /tools/f2fsslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/f2fsslower.py -------------------------------------------------------------------------------- /tools/f2fsslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/f2fsslower_example.txt -------------------------------------------------------------------------------- /tools/filegone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/filegone.py -------------------------------------------------------------------------------- /tools/filegone_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/filegone_example.txt -------------------------------------------------------------------------------- /tools/filelife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/filelife.py -------------------------------------------------------------------------------- /tools/filelife_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/filelife_example.txt -------------------------------------------------------------------------------- /tools/fileslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/fileslower.py -------------------------------------------------------------------------------- /tools/fileslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/fileslower_example.txt -------------------------------------------------------------------------------- /tools/filetop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/filetop.py -------------------------------------------------------------------------------- /tools/filetop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/filetop_example.txt -------------------------------------------------------------------------------- /tools/funccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funccount.py -------------------------------------------------------------------------------- /tools/funccount_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funccount_example.txt -------------------------------------------------------------------------------- /tools/funcinterval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funcinterval.py -------------------------------------------------------------------------------- /tools/funcinterval_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funcinterval_example.txt -------------------------------------------------------------------------------- /tools/funclatency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funclatency.py -------------------------------------------------------------------------------- /tools/funclatency_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funclatency_example.txt -------------------------------------------------------------------------------- /tools/funcslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funcslower.py -------------------------------------------------------------------------------- /tools/funcslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/funcslower_example.txt -------------------------------------------------------------------------------- /tools/gethostlatency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/gethostlatency.py -------------------------------------------------------------------------------- /tools/hardirqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/hardirqs.py -------------------------------------------------------------------------------- /tools/hardirqs_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/hardirqs_example.txt -------------------------------------------------------------------------------- /tools/inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/inject.py -------------------------------------------------------------------------------- /tools/inject_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/inject_example.txt -------------------------------------------------------------------------------- /tools/javacalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/javacalls.sh -------------------------------------------------------------------------------- /tools/javacalls_example.txt: -------------------------------------------------------------------------------- 1 | lib/ucalls_example.txt -------------------------------------------------------------------------------- /tools/javaflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/javaflow.sh -------------------------------------------------------------------------------- /tools/javaflow_example.txt: -------------------------------------------------------------------------------- 1 | lib/uflow_example.txt -------------------------------------------------------------------------------- /tools/javagc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/javagc.sh -------------------------------------------------------------------------------- /tools/javagc_example.txt: -------------------------------------------------------------------------------- 1 | lib/ugc_example.txt -------------------------------------------------------------------------------- /tools/javaobjnew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/javaobjnew.sh -------------------------------------------------------------------------------- /tools/javaobjnew_example.txt: -------------------------------------------------------------------------------- 1 | lib/uobjnew_example.txt -------------------------------------------------------------------------------- /tools/javastat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/javastat.sh -------------------------------------------------------------------------------- /tools/javastat_example.txt: -------------------------------------------------------------------------------- 1 | lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/javathreads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/javathreads.sh -------------------------------------------------------------------------------- /tools/javathreads_example.txt: -------------------------------------------------------------------------------- 1 | lib/uthreads_example.txt -------------------------------------------------------------------------------- /tools/killsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/killsnoop.py -------------------------------------------------------------------------------- /tools/killsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/killsnoop_example.txt -------------------------------------------------------------------------------- /tools/klockstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/klockstat.py -------------------------------------------------------------------------------- /tools/klockstat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/klockstat_example.txt -------------------------------------------------------------------------------- /tools/kvmexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/kvmexit.py -------------------------------------------------------------------------------- /tools/kvmexit_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/kvmexit_example.txt -------------------------------------------------------------------------------- /tools/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lib/ucalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/ucalls.py -------------------------------------------------------------------------------- /tools/lib/ucalls_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/ucalls_example.txt -------------------------------------------------------------------------------- /tools/lib/uflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/uflow.py -------------------------------------------------------------------------------- /tools/lib/uflow_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/uflow_example.txt -------------------------------------------------------------------------------- /tools/lib/ugc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/ugc.py -------------------------------------------------------------------------------- /tools/lib/ugc_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/ugc_example.txt -------------------------------------------------------------------------------- /tools/lib/uobjnew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/uobjnew.py -------------------------------------------------------------------------------- /tools/lib/uobjnew_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/uobjnew_example.txt -------------------------------------------------------------------------------- /tools/lib/ustat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/ustat.py -------------------------------------------------------------------------------- /tools/lib/ustat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/lib/uthreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/uthreads.py -------------------------------------------------------------------------------- /tools/lib/uthreads_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/lib/uthreads_example.txt -------------------------------------------------------------------------------- /tools/llcstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/llcstat.py -------------------------------------------------------------------------------- /tools/llcstat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/llcstat_example.txt -------------------------------------------------------------------------------- /tools/mdflush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/mdflush.py -------------------------------------------------------------------------------- /tools/mdflush_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/mdflush_example.txt -------------------------------------------------------------------------------- /tools/memleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/memleak.py -------------------------------------------------------------------------------- /tools/memleak_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/memleak_example.txt -------------------------------------------------------------------------------- /tools/mountsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/mountsnoop.py -------------------------------------------------------------------------------- /tools/mountsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/mountsnoop_example.txt -------------------------------------------------------------------------------- /tools/mysqld_qslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/mysqld_qslower.py -------------------------------------------------------------------------------- /tools/netqtop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/netqtop.c -------------------------------------------------------------------------------- /tools/netqtop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/netqtop.py -------------------------------------------------------------------------------- /tools/netqtop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/netqtop_example.txt -------------------------------------------------------------------------------- /tools/nfsdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/nfsdist.py -------------------------------------------------------------------------------- /tools/nfsdist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/nfsdist_example.txt -------------------------------------------------------------------------------- /tools/nfsslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/nfsslower.py -------------------------------------------------------------------------------- /tools/nfsslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/nfsslower_example.txt -------------------------------------------------------------------------------- /tools/nodegc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/nodegc.sh -------------------------------------------------------------------------------- /tools/nodegc_example.txt: -------------------------------------------------------------------------------- 1 | lib/ugc_example.txt -------------------------------------------------------------------------------- /tools/nodestat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/nodestat.sh -------------------------------------------------------------------------------- /tools/nodestat_example.txt: -------------------------------------------------------------------------------- 1 | lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/offcputime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/offcputime.py -------------------------------------------------------------------------------- /tools/offcputime_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/offcputime_example.txt -------------------------------------------------------------------------------- /tools/offwaketime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/offwaketime.py -------------------------------------------------------------------------------- /tools/offwaketime_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/offwaketime_example.txt -------------------------------------------------------------------------------- /tools/old/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/CMakeLists.txt -------------------------------------------------------------------------------- /tools/old/bashreadline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/bashreadline.py -------------------------------------------------------------------------------- /tools/old/biosnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/biosnoop.py -------------------------------------------------------------------------------- /tools/old/compactsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/compactsnoop.py -------------------------------------------------------------------------------- /tools/old/filegone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/filegone.py -------------------------------------------------------------------------------- /tools/old/filelife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/filelife.py -------------------------------------------------------------------------------- /tools/old/gethostlatency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/gethostlatency.py -------------------------------------------------------------------------------- /tools/old/hardirqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/hardirqs.py -------------------------------------------------------------------------------- /tools/old/killsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/killsnoop.py -------------------------------------------------------------------------------- /tools/old/memleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/memleak.py -------------------------------------------------------------------------------- /tools/old/offcputime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/offcputime.py -------------------------------------------------------------------------------- /tools/old/offwaketime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/offwaketime.py -------------------------------------------------------------------------------- /tools/old/oomkill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/oomkill.py -------------------------------------------------------------------------------- /tools/old/opensnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/opensnoop.py -------------------------------------------------------------------------------- /tools/old/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/profile.py -------------------------------------------------------------------------------- /tools/old/softirqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/softirqs.py -------------------------------------------------------------------------------- /tools/old/stackcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/stackcount.py -------------------------------------------------------------------------------- /tools/old/stacksnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/stacksnoop.py -------------------------------------------------------------------------------- /tools/old/statsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/statsnoop.py -------------------------------------------------------------------------------- /tools/old/syncsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/syncsnoop.py -------------------------------------------------------------------------------- /tools/old/tcpaccept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/tcpaccept.py -------------------------------------------------------------------------------- /tools/old/tcpconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/tcpconnect.py -------------------------------------------------------------------------------- /tools/old/wakeuptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/old/wakeuptime.py -------------------------------------------------------------------------------- /tools/oomkill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/oomkill.py -------------------------------------------------------------------------------- /tools/oomkill_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/oomkill_example.txt -------------------------------------------------------------------------------- /tools/opensnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/opensnoop.py -------------------------------------------------------------------------------- /tools/opensnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/opensnoop_example.txt -------------------------------------------------------------------------------- /tools/perlcalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/perlcalls.sh -------------------------------------------------------------------------------- /tools/perlcalls_example.txt: -------------------------------------------------------------------------------- 1 | lib/ucalls_example.txt -------------------------------------------------------------------------------- /tools/perlflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/perlflow.sh -------------------------------------------------------------------------------- /tools/perlflow_example.txt: -------------------------------------------------------------------------------- 1 | lib/uflow_example.txt -------------------------------------------------------------------------------- /tools/perlstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/perlstat.sh -------------------------------------------------------------------------------- /tools/perlstat_example.txt: -------------------------------------------------------------------------------- 1 | lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/phpcalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/phpcalls.sh -------------------------------------------------------------------------------- /tools/phpcalls_example.txt: -------------------------------------------------------------------------------- 1 | lib/ucalls_example.txt -------------------------------------------------------------------------------- /tools/phpflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/phpflow.sh -------------------------------------------------------------------------------- /tools/phpflow_example.txt: -------------------------------------------------------------------------------- 1 | lib/uflow_example.txt -------------------------------------------------------------------------------- /tools/phpstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/phpstat.sh -------------------------------------------------------------------------------- /tools/phpstat_example.txt: -------------------------------------------------------------------------------- 1 | lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/pidpersec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/pidpersec.py -------------------------------------------------------------------------------- /tools/pidpersec_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/pidpersec_example.txt -------------------------------------------------------------------------------- /tools/ppchcalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ppchcalls.py -------------------------------------------------------------------------------- /tools/ppchcalls_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ppchcalls_example.txt -------------------------------------------------------------------------------- /tools/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/profile.py -------------------------------------------------------------------------------- /tools/profile_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/profile_example.txt -------------------------------------------------------------------------------- /tools/pythoncalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/pythoncalls.sh -------------------------------------------------------------------------------- /tools/pythoncalls_example.txt: -------------------------------------------------------------------------------- 1 | lib/ucalls_example.txt -------------------------------------------------------------------------------- /tools/pythonflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/pythonflow.sh -------------------------------------------------------------------------------- /tools/pythonflow_example.txt: -------------------------------------------------------------------------------- 1 | lib/uflow_example.txt -------------------------------------------------------------------------------- /tools/pythongc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/pythongc.sh -------------------------------------------------------------------------------- /tools/pythongc_example.txt: -------------------------------------------------------------------------------- 1 | lib/ugc_example.txt -------------------------------------------------------------------------------- /tools/pythonstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/pythonstat.sh -------------------------------------------------------------------------------- /tools/pythonstat_example.txt: -------------------------------------------------------------------------------- 1 | lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/rdmaucma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/rdmaucma.py -------------------------------------------------------------------------------- /tools/rdmaucma_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/rdmaucma_example.txt -------------------------------------------------------------------------------- /tools/readahead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/readahead.py -------------------------------------------------------------------------------- /tools/readahead_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/readahead_example.txt -------------------------------------------------------------------------------- /tools/reset-trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/reset-trace.sh -------------------------------------------------------------------------------- /tools/rubycalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/rubycalls.sh -------------------------------------------------------------------------------- /tools/rubycalls_example.txt: -------------------------------------------------------------------------------- 1 | lib/ucalls_example.txt -------------------------------------------------------------------------------- /tools/rubyflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/rubyflow.sh -------------------------------------------------------------------------------- /tools/rubyflow_example.txt: -------------------------------------------------------------------------------- 1 | lib/uflow_example.txt -------------------------------------------------------------------------------- /tools/rubygc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/rubygc.sh -------------------------------------------------------------------------------- /tools/rubygc_example.txt: -------------------------------------------------------------------------------- 1 | lib/ugc_example.txt -------------------------------------------------------------------------------- /tools/rubyobjnew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/rubyobjnew.sh -------------------------------------------------------------------------------- /tools/rubyobjnew_example.txt: -------------------------------------------------------------------------------- 1 | lib/uobjnew_example.txt -------------------------------------------------------------------------------- /tools/rubystat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/rubystat.sh -------------------------------------------------------------------------------- /tools/rubystat_example.txt: -------------------------------------------------------------------------------- 1 | lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/runqlat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/runqlat.py -------------------------------------------------------------------------------- /tools/runqlat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/runqlat_example.txt -------------------------------------------------------------------------------- /tools/runqlen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/runqlen.py -------------------------------------------------------------------------------- /tools/runqlen_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/runqlen_example.txt -------------------------------------------------------------------------------- /tools/runqslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/runqslower.py -------------------------------------------------------------------------------- /tools/runqslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/runqslower_example.txt -------------------------------------------------------------------------------- /tools/shmsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/shmsnoop.py -------------------------------------------------------------------------------- /tools/shmsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/shmsnoop_example.txt -------------------------------------------------------------------------------- /tools/slabratetop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/slabratetop.py -------------------------------------------------------------------------------- /tools/sofdsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/sofdsnoop.py -------------------------------------------------------------------------------- /tools/sofdsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/sofdsnoop_example.txt -------------------------------------------------------------------------------- /tools/softirqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/softirqs.py -------------------------------------------------------------------------------- /tools/softirqs_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/softirqs_example.txt -------------------------------------------------------------------------------- /tools/solisten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/solisten.py -------------------------------------------------------------------------------- /tools/solisten_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/solisten_example.txt -------------------------------------------------------------------------------- /tools/sslsniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/sslsniff.py -------------------------------------------------------------------------------- /tools/sslsniff_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/sslsniff_example.txt -------------------------------------------------------------------------------- /tools/stackcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/stackcount.py -------------------------------------------------------------------------------- /tools/stackcount_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/stackcount_example.txt -------------------------------------------------------------------------------- /tools/stacksnoop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/stacksnoop.lua -------------------------------------------------------------------------------- /tools/statsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/statsnoop.py -------------------------------------------------------------------------------- /tools/statsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/statsnoop_example.txt -------------------------------------------------------------------------------- /tools/swapin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/swapin.py -------------------------------------------------------------------------------- /tools/swapin_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/swapin_example.txt -------------------------------------------------------------------------------- /tools/syncsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/syncsnoop.py -------------------------------------------------------------------------------- /tools/syncsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/syncsnoop_example.txt -------------------------------------------------------------------------------- /tools/syscount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/syscount.py -------------------------------------------------------------------------------- /tools/syscount_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/syscount_example.txt -------------------------------------------------------------------------------- /tools/tclcalls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tclcalls.sh -------------------------------------------------------------------------------- /tools/tclcalls_example.txt: -------------------------------------------------------------------------------- 1 | lib/ucalls_example.txt -------------------------------------------------------------------------------- /tools/tclflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tclflow.sh -------------------------------------------------------------------------------- /tools/tclflow_example.txt: -------------------------------------------------------------------------------- 1 | lib/uflow_example.txt -------------------------------------------------------------------------------- /tools/tclobjnew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tclobjnew.sh -------------------------------------------------------------------------------- /tools/tclobjnew_example.txt: -------------------------------------------------------------------------------- 1 | lib/uobjnew_example.txt -------------------------------------------------------------------------------- /tools/tclstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tclstat.sh -------------------------------------------------------------------------------- /tools/tclstat_example.txt: -------------------------------------------------------------------------------- 1 | lib/ustat_example.txt -------------------------------------------------------------------------------- /tools/tcpaccept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpaccept.py -------------------------------------------------------------------------------- /tools/tcpaccept_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpaccept_example.txt -------------------------------------------------------------------------------- /tools/tcpcong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpcong.py -------------------------------------------------------------------------------- /tools/tcpcong_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpcong_example.txt -------------------------------------------------------------------------------- /tools/tcpconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpconnect.py -------------------------------------------------------------------------------- /tools/tcpconnect_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpconnect_example.txt -------------------------------------------------------------------------------- /tools/tcpconnlat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpconnlat.py -------------------------------------------------------------------------------- /tools/tcpconnlat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpconnlat_example.txt -------------------------------------------------------------------------------- /tools/tcpdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpdrop.py -------------------------------------------------------------------------------- /tools/tcpdrop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpdrop_example.txt -------------------------------------------------------------------------------- /tools/tcplife.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcplife.lua -------------------------------------------------------------------------------- /tools/tcplife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcplife.py -------------------------------------------------------------------------------- /tools/tcplife_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcplife_example.txt -------------------------------------------------------------------------------- /tools/tcpretrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpretrans.py -------------------------------------------------------------------------------- /tools/tcpretrans_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpretrans_example.txt -------------------------------------------------------------------------------- /tools/tcprtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcprtt.py -------------------------------------------------------------------------------- /tools/tcprtt_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcprtt_example.txt -------------------------------------------------------------------------------- /tools/tcpstates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpstates.py -------------------------------------------------------------------------------- /tools/tcpstates_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpstates_example.txt -------------------------------------------------------------------------------- /tools/tcpsubnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpsubnet.py -------------------------------------------------------------------------------- /tools/tcpsubnet_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpsubnet_example.txt -------------------------------------------------------------------------------- /tools/tcpsynbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpsynbl.py -------------------------------------------------------------------------------- /tools/tcpsynbl_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcpsynbl_example.txt -------------------------------------------------------------------------------- /tools/tcptop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcptop.py -------------------------------------------------------------------------------- /tools/tcptop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcptop_example.txt -------------------------------------------------------------------------------- /tools/tcptracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcptracer.py -------------------------------------------------------------------------------- /tools/tcptracer_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tcptracer_example.txt -------------------------------------------------------------------------------- /tools/threadsnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/threadsnoop.py -------------------------------------------------------------------------------- /tools/tplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tplist.py -------------------------------------------------------------------------------- /tools/tplist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/tplist_example.txt -------------------------------------------------------------------------------- /tools/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/trace.py -------------------------------------------------------------------------------- /tools/trace_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/trace_example.txt -------------------------------------------------------------------------------- /tools/ttysnoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ttysnoop.py -------------------------------------------------------------------------------- /tools/ttysnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/ttysnoop_example.txt -------------------------------------------------------------------------------- /tools/vfscount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/vfscount.py -------------------------------------------------------------------------------- /tools/vfscount_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/vfscount_example.txt -------------------------------------------------------------------------------- /tools/vfsstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/vfsstat.py -------------------------------------------------------------------------------- /tools/vfsstat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/vfsstat_example.txt -------------------------------------------------------------------------------- /tools/virtiostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/virtiostat.py -------------------------------------------------------------------------------- /tools/virtiostat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/virtiostat_example.txt -------------------------------------------------------------------------------- /tools/wakeuptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/wakeuptime.py -------------------------------------------------------------------------------- /tools/wakeuptime_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/wakeuptime_example.txt -------------------------------------------------------------------------------- /tools/wqlat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/wqlat.py -------------------------------------------------------------------------------- /tools/wqlat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/wqlat_example.txt -------------------------------------------------------------------------------- /tools/xfsdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/xfsdist.py -------------------------------------------------------------------------------- /tools/xfsdist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/xfsdist_example.txt -------------------------------------------------------------------------------- /tools/xfsslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/xfsslower.py -------------------------------------------------------------------------------- /tools/xfsslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/xfsslower_example.txt -------------------------------------------------------------------------------- /tools/zfsdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/zfsdist.py -------------------------------------------------------------------------------- /tools/zfsdist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/zfsdist_example.txt -------------------------------------------------------------------------------- /tools/zfsslower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/zfsslower.py -------------------------------------------------------------------------------- /tools/zfsslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/bcc/HEAD/tools/zfsslower_example.txt --------------------------------------------------------------------------------