diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-06 14:33:52 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-06 14:33:52 +0200 |
| commit | 3e08a3d199fdf603b7c0a4002ca9822b6ecf2575 (patch) | |
| tree | 7e096a07cc515ffc18f0eca308819e8162df1d60 /internal/flags/flags.go | |
| parent | aa4f638206b9b79de267f9a1daab7ec6698b241d (diff) | |
flamegraph: make esc undo one zoom level and aggregate syscalls by default
Diffstat (limited to 'internal/flags/flags.go')
| -rw-r--r-- | internal/flags/flags.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/flags/flags.go b/internal/flags/flags.go index 0df1d2d..503aefb 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -83,7 +83,7 @@ func NewFlags() Flags { LiveInterval: 200 * time.Millisecond, FlamegraphName: "default", TUIExportEnable: true, - CollapsedFields: []string{"comm", "path", "tracepoint"}, + CollapsedFields: []string{"comm", "tracepoint", "path"}, CountField: "count", } } @@ -221,7 +221,7 @@ func parse() error { // If future kernels regress, add targeted exclusions here. if *fields == "" { - cfg.CollapsedFields = []string{"comm", "path", "tracepoint"} + cfg.CollapsedFields = []string{"comm", "tracepoint", "path"} } else { cfg.CollapsedFields = strings.Split(*fields, ",") } |
