We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e0433 commit 68a42f8Copy full SHA for 68a42f8
README.md
@@ -9,7 +9,17 @@ kernel to receive details about the `exec` family of syscalls.
9
## Requirements
10
11
exectrace only supports Go 1.16+ and Linux kernel 5.8+ (due to the use of
12
-`BPF_MAP_TYPE_RINGBUF`).
+`BPF_MAP_TYPE_RINGBUF`). Additionally, the kernel config `CONFIG_DEBUG_INFO_BTF=y` is required.
13
+
14
+To validate this config is enabled, run either of the following commands directly on the system:
15
16
+```console
17
+cat /proc/config.gz | gunzip | grep CONFIG_DEBUG_INFO_BTF
18
+```
19
20
21
+$ cat "/boot/config-$(uname -r)" | grep CONFIG_DEBUG_INFO_BTF
22
23
24
## Installation
25
0 commit comments