mirror of
https://github.com/google/nsjail.git
synced 2026-08-30 18:41:30 -07:00
* 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
15 lines
264 B
C++
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 */
|