Skip to content

add ebpf-required config #809

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion admin/workspace-management/process-logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,18 @@ The core of this feature is also open source and can be found in the
## Requirements

Use of the workspace process logging functionality requires a host Linux
kernel >= 5.8.
kernel >= 5.8 with the kernel config `CONFIG_DEBUG_INFO_BTF=y` enabled.

To validate this config is enabled, run either of the following commands on the
nodes directly (*not* from the terminal within a workspace):

```console
cat /proc/config.gz | gunzip | grep CONFIG_DEBUG_INFO_BTF
```

```console
cat "/boot/config-$(uname -r)" | grep CONFIG_DEBUG_INFO_BTF
```

## Enable workspace process logging

Expand Down