From e83dbe85f79a9e949ee60628142649757f1e2e3e Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Mon, 8 May 2023 23:33:23 +0200 Subject: [PATCH] cleanup(config): modern bpf is no more experimental Signed-off-by: Andrea Terzolo --- falco.yaml | 7 +++---- userspace/falco/app/options.cpp | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/falco.yaml b/falco.yaml index ec77a4af..d9265ac6 100644 --- a/falco.yaml +++ b/falco.yaml @@ -232,9 +232,8 @@ syscall_drop_failed_exit: false syscall_buf_size_preset: 4 -############## [EXPERIMENTAL] Modern BPF probe specific ############## -# Please note: these configs regard only the modern BPF probe. They -# are experimental so they could change over releases. +############## Modern BPF probe specific ############## +# Please note: these configs regard only the modern BPF probe. # # `cpus_for_each_syscall_buffer` # @@ -297,7 +296,7 @@ syscall_buf_size_preset: 4 modern_bpf: cpus_for_each_syscall_buffer: 2 -############## [EXPERIMENTAL] Modern BPF probe specific ############## +############## Modern BPF probe specific ############## # Falco continuously monitors outputs performance. When an output channel does not allow # to deliver an alert within a given deadline, an error is reported indicating diff --git a/userspace/falco/app/options.cpp b/userspace/falco/app/options.cpp index 303996a8..58bf241c 100644 --- a/userspace/falco/app/options.cpp +++ b/userspace/falco/app/options.cpp @@ -180,7 +180,7 @@ void options::define(cxxopts::Options& opts) ("gvisor-root", "gVisor root directory for storage of container state. Equivalent to runsc --root flag.", cxxopts::value(gvisor_root), "") #endif #ifdef HAS_MODERN_BPF - ("modern-bpf", "[EXPERIMENTAL] Use BPF modern probe to capture system events.", cxxopts::value(modern_bpf)->default_value("false")) + ("modern-bpf", "Use BPF modern probe to capture system events.", cxxopts::value(modern_bpf)->default_value("false")) #endif ("i", "Print all high volume syscalls that are ignored by default for performance reasons (i.e. without the -A flag) and exit.", cxxopts::value(print_ignored_events)->default_value("false")) #ifndef MINIMAL_BUILD