Files
nsjail/unotify/stats.h
Robert Swiecki ee2d05e874 Integrate a seccomp user notification to trace and log sandboxed filesystem and network operations
* Introduces a dedicated, async worker thread that monitors SECCOMP_RET_USER_NOTIF events
 * Produces telemetry using protobufs to track resolved namespace paths, and network endpoints
2026-04-03 11:20:02 +02:00

15 lines
264 B
C++

#ifndef NSJAIL_UNOTIFY_STATS_H
#define NSJAIL_UNOTIFY_STATS_H
#include "nsjail.h"
#include "unotify/record.h"
namespace unotify {
void addStat(const SyscallRecord& rec);
void printStats(nsj_t* nsj);
} // namespace unotify
#endif /* NSJAIL_UNOTIFY_STATS_H */