From ac3c95d468d7ac90ef938fc21e57cea9dd97f03a Mon Sep 17 00:00:00 2001 From: nullswan Date: Thu, 19 Sep 2024 00:17:16 +0200 Subject: [PATCH] refactor(internal/bpf): remove unused timestamp fields --- internal/bpf/event.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/bpf/event.go b/internal/bpf/event.go index fbc7b7f..d50c20b 100644 --- a/internal/bpf/event.go +++ b/internal/bpf/event.go @@ -8,7 +8,6 @@ type Event interface { type SyscallEvent struct { SyscallNr int64 - Ts uint64 CgroupID uint64 Pid uint64 } @@ -18,7 +17,6 @@ func (s SyscallEvent) GetSyscallName() string { } type NetworkEvent struct { - Ts uint64 Pid uint64 CgroupID uint64 Size uint64