diff options
| author | Paul Buetow <paul@buetow.org> | 2025-04-11 23:21:23 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-04-11 23:21:23 +0300 |
| commit | 0f52c3503bd11dd9a42a601a6967820f0fefb8d7 (patch) | |
| tree | c3a3c8d316e44257c4339fafef6299f78c26b6e5 | |
| parent | 7c7a726aaf4df1e9444f72b0f35373c82adba188 (diff) | |
fix bug
| -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 775b357..fc41062 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -99,7 +99,7 @@ func parse() { singleton.TracepointsToExclude = extractTracepointFlags(*tracepointsToExclude) if *fields == "" { - singleton.CollapsedFields = []string{"path", "tracepoint", "count"} + singleton.CollapsedFields = []string{"pid", "path", "tracepoint"} } else { singleton.CollapsedFields = strings.Split(*fields, ",") } |
