-
Updated
Sep 16, 2021 - Go
bpf
Here are 171 public repositories matching this topic...
-
Updated
Aug 24, 2021 - C
-
Updated
Sep 14, 2021 - C
-
Updated
Sep 15, 2021 - C
-
Updated
Sep 14, 2021
At the moment of writing this issue, kubectl trace only supports X86-64 as target architecture.
The tool should be able to schedule bpftrace programs against all the architectures supported by bpftrace, that are X86-64 and arm64 (aarch64) see the Cmake definition.
To achieve that we n
We currently only check for CAP_SYS_ADMIN when running Tracee (https://github.com/aquasecurity/tracee/blob/main/tracee-ebpf/main.go#L885), which was correct for old kernels.
For newer kernels, CAP_SYS_ADMIN was split into combination of 3 other capabilities:
CAP_BPF, CAP_PERFMON and CAP_NET_ADMIN as described in https://lwn.net/Articles/820560/, and https://lwn.net/Articles/822362/
Update check
-
Updated
Sep 15, 2021 - Go
-
Updated
Aug 17, 2021 - Go
kinvolk/inspektor-gadget#163 introduced support for a new hook mode based on NRI (Node Resource Interface). Currently this mode only works if the user explicitly pass the --hook-mode=nri option and it's not considered when --hook-mode=auto is used.
Inspektor Gadget should detect if containerd v1.5+ is used as runtime and set HOOK_MODE="podinformer" in the followin
Expose internal raw bytes for embedded ELF file as another BPF skeleton function. This might be useful for dumping assembly (for diagnostics), plus in some scenarios where the skeleton struct is not convenient to use, but BPF skeleton's ELF embedding is a desirable functionality.
-
Updated
Sep 15, 2021 - Rust
-
Updated
Sep 7, 2021 - Rust
Can we get some performance comparison between polycube and using standard linux facilities (NAT, iptables, etc.)?
CPU usage, PPS, latencies, etc.
-
Updated
Jul 22, 2021 - C
When the k8s subcommand notices that a container is deleted, it keeps the tracelet for one minute. Directly retire the tracelet without any timeouts after dumping it a final time and store the rendered string compressed in a second list (which has a maximal length, appending if full will push the oldest element out).
If the API functions for dump, close etc can't find an active tracelet,
-
Updated
Jul 21, 2021 - Go
-
Updated
Sep 16, 2021 - Go
Improve this page
Add a description, image, and links to the bpf topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the bpf topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
I fiddled around with
bpftraceto write internal documentation for my colleagues on how to use it. I chosetracepoint:syscalls:sys_enter_mkdiras a suitable tracepoint for a simple demo, and wrote this code: