diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-02 08:31:29 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-02 08:31:29 +0200 |
| commit | 38620359537d77ab10acb888d266d3c6eb16fc9b (patch) | |
| tree | 7a33da8b77e978f076822c843ed0b1e9ba74d6e4 /internal | |
| parent | b6c424b769b6f7d19c805327d59b1daa76f72285 (diff) | |
change default duration to 10min
Diffstat (limited to 'internal')
| -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 5197eb4..bf348c7 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -108,7 +108,7 @@ func parse() error { flag.IntVar(&singleton.PidFilter, "pid", -1, "Filter for processes ID") flag.IntVar(&singleton.TidFilter, "tid", -1, "Filter for thread ID") flag.IntVar(&singleton.EventMapSize, "mapSize", 4096*16, "BPF FD event ring buffer map size") - flag.IntVar(&singleton.Duration, "duration", 60, "Probe duration in seconds") + flag.IntVar(&singleton.Duration, "duration", 900, "Probe duration in seconds") flag.StringVar(&singleton.CommFilter, "comm", "", "Command to filter for") flag.StringVar(&singleton.PathFilter, "path", "", "Path to filter for") |
