diff options
| author | Paul Buetow <paul@buetow.org> | 2024-02-16 21:46:02 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-02-16 21:46:02 +0200 |
| commit | 01059c9390150a4e9b78db6c6399e02729121331 (patch) | |
| tree | 381e6b0bf74eeaef3630523af8dbb413a97c96ba /internal/flags/flags.go | |
| parent | ec6ad4983ca023842cc5c780a723b753bf55518b (diff) | |
calculate time taken
Diffstat (limited to 'internal/flags/flags.go')
| -rw-r--r-- | internal/flags/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/flags/flags.go b/internal/flags/flags.go index d50410b..2331762 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -16,7 +16,7 @@ type Flags struct { func New() (flags Flags) { flag.IntVar(&flags.UidFilter, "uid", 0, "Filter for processes with UID") - flag.IntVar(&flags.EventMapSize, "mapSize", 4096, "BPF FD event ring buffer map size") + flag.IntVar(&flags.EventMapSize, "mapSize", 4096*16, "BPF FD event ring buffer map size") flag.Parse() return flags |
