Skip to content

Commit 584f9ba

Browse files
Stringyclaude
andcommitted
Bump falco with push__bytebuf verifier fix
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e97f768 commit 584f9ba

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Analyse CI Results
1+
# Analyze CI Results
22

33
You are helping investigate CI failures for the StackRox collector project. This skill describes how to navigate the CI infrastructure, download logs, and diagnose common failure modes.
44

@@ -273,3 +273,13 @@ set(MODERN_BPF_EXCLUDE_PROGS "^(openat2|ppoll|...)$" CACHE STRING "..." FORCE)
273273
The regex matches against BPF source file stems (e.g., `pread64` matches `pread64.bpf.c`). Excluded programs are not compiled into the skeleton. The loader in `maps.c:add_bpf_program_to_tail_table()` handles missing programs gracefully (logs debug message, returns success).
274274

275275
Only exclude programs for syscalls that collector does not subscribe to. Collector's syscall list is in `collector/lib/CollectorConfig.h` (`kSyscalls[]` and `kSendRecvSyscalls[]`).
276+
277+
## Cleanup
278+
279+
Once the analysis is complete and you have reported your findings, delete all downloaded log artifacts (zip files and extracted directories) from `/tmp/`:
280+
281+
```bash
282+
rm -rf /tmp/*-logs /tmp/*-logs.zip
283+
```
284+
285+
This prevents stale logs from accumulating across investigations.

0 commit comments

Comments
 (0)