Skip to content

Commit

Permalink
make default full-detail output narrower
Browse files Browse the repository at this point in the history
tanelpoder committed Jun 27, 2024
1 parent a833619 commit ae82ed3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bin/xcapture-bpf
Original file line number Diff line number Diff line change
@@ -36,9 +36,8 @@ from datetime import datetime
from bcc import BPF, PerfType, PerfSWConfig

# default output fields for ungrouped full detail output
output_fields = [ 'timestamp', 'st', 'flags', 'tid', 'pid', 'username', 'comm', 'syscall'
, 'offcpu_u', 'offcpu_k', 'oncpu_u', 'oncpu_k'
, 'in_sched_waking', 'in_sched_wakeup', 'waker_tid', 'sch' ]
output_fields = [ 'timestamp', 'st', 'tid', 'pid', 'username', 'comm', 'syscall'
, 'offcpu_u', 'offcpu_k', 'oncpu_u', 'oncpu_k', 'waker_tid', 'sch' ]


# syscall id to name translation (todo: fix aarch64 include file lookup)

0 comments on commit ae82ed3

Please sign in to comment.