diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-27 21:50:08 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-27 21:50:08 +0200 |
| commit | 281a433b9ff39c0b290adfc901bdf47cc486491f (patch) | |
| tree | b7389fabb8cfc5dbd66275f3cfe5a3fb98cd2b3a /internal/flags/flags.go | |
| parent | f55212d9c02b87b2d6e15f62b2ce5b992b9d3045 (diff) | |
flags: change default flamegraph order to comm-first
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 dccbe0d..8785ea9 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -144,7 +144,7 @@ func parse() { // If future kernels regress, add targeted exclusions here. if *fields == "" { - singleton.CollapsedFields = []string{"pid", "path", "tracepoint"} + singleton.CollapsedFields = []string{"comm", "path", "tracepoint"} } else { singleton.CollapsedFields = strings.Split(*fields, ",") } |
