-
Updated
Nov 14, 2021 - Go
bpf
Here are 179 public repositories matching this topic...
-
Updated
Nov 14, 2021 - C
-
Updated
Oct 28, 2021
-
Updated
Nov 13, 2021 - C
-
Updated
Nov 14, 2021 - C
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
Nov 4, 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
Almost every single BPF application out there has to implement bumping RLIMIT_MEMLOCK. What's worse, starting from some recent kernel version, RLIMIT_MEMLOCK is not necessary anymore for loading BPF programs and maps. Instead of asking all users to implement this detection logic and RLIMIT_MEMLOCK adjustment, do a sensible thing automatically:
- on older kernels, bump RLIMIT_MEMLOCK to infinity
-
Updated
Nov 13, 2021 - Rust
-
Updated
Nov 13, 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
Oct 23, 2021 - C
If we check Multiubuntu, there is no instructions for KubeAmor installation. I was testing using development environment and there is any step related to CRDs deployments and I faced some error. Maybe we can put some "Be sure that you
-
Updated
Jul 21, 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: