diff options
author | Namhyung Kim <namhyung@kernel.org> | 2016-01-06 19:12:29 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-01-08 12:23:02 -0500 |
commit | 775d8a1b0d75211cc6123915c6b5b688f2002478 (patch) | |
tree | 2bed2ab8e7fa6e6202154992433bb24ecdb9a24d | |
parent | 5c0cf22477eaa890beeb4bc3554e5bebbea4b007 (diff) |
perf evlist: Add --trace-fields option to show trace fields
To use dynamic sort keys, it might be good to add an option to see the
list of field names.
$ perf evlist -i perf.data.sched
sched:sched_switch
sched:sched_stat_wait
sched:sched_stat_sleep
sched:sched_stat_iowait
sched:sched_stat_runtime
sched:sched_process_fork
sched:sched_wakeup
sched:sched_wakeup_new
sched:sched_migrate_task
# Tip: use 'perf evlist --trace-fields' to show fields for tracepoint events
$ perf evlist -i perf.data.sched --trace-fields
sched:sched_switch: trace_fields: prev_comm,prev_pid,prev_prio,prev_state,next_comm,next_pid,next_prio
sched:sched_stat_wait: trace_fields: comm,pid,delay
sched:sched_stat_sleep: trace_fields: comm,pid,delay
sched:sched_stat_iowait: trace_fields: comm,pid,delay
sched:sched_stat_runtime: trace_fields: comm,pid,runtime,vruntime
sched:sched_process_fork: trace_fields: parent_comm,parent_pid,child_comm,child_pid
sched:sched_wakeup: trace_fields: comm,pid,prio,success,target_cpu
sched:sched_wakeup_new: trace_fields: comm,pid,prio,success,target_cpu
sched:sched_migrate_task: trace_fields: comm,pid,prio,orig_cpu,dest_cpu
Committer notes:
For another file, in verbose mode:
# perf evlist -v --trace-fields
sched:sched_switch: type: 2, size: 112, config: 0x10b, { sample_period, sample_freq }: 1, sample_type: IP|TID|TIME|CPU|PERIOD|RAW, disabled: 1, inherit: 1, mmap: 1, comm: 1, task: 1, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1, trace_fields: prev_comm,prev_pid,prev_prio,prev_state,next_comm,next_pid,next_prio
#
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1452125549-1511-5-git-send-email-namhyung@kernel.org
[ Replaced 'trace_fields=' with 'trace_fields: ' to make the output consistent in -v mode ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/Documentation/perf-evlist.txt | 3 | ||||
-rw-r--r-- | tools/perf/builtin-evlist.c | 11 | ||||
-rw-r--r-- | tools/perf/util/evsel.c | 23 | ||||
-rw-r--r-- | tools/perf/util/evsel.h | 1 |
4 files changed, 37 insertions, 1 deletions
diff --git a/tools/perf/Documentation/perf-evlist.txt b/tools/perf/Documentation/perf-evlist.txt index 1ceb3700ffbb..6f7200fb85cf 100644 --- a/tools/perf/Documentation/perf-evlist.txt +++ b/tools/perf/Documentation/perf-evlist.txt | |||
@@ -32,6 +32,9 @@ OPTIONS | |||
32 | --group:: | 32 | --group:: |
33 | Show event group information. | 33 | Show event group information. |
34 | 34 | ||
35 | --trace-fields:: | ||
36 | Show tracepoint field names. | ||
37 | |||
35 | SEE ALSO | 38 | SEE ALSO |
36 | -------- | 39 | -------- |
37 | linkperf:perf-record[1], linkperf:perf-list[1], | 40 | linkperf:perf-record[1], linkperf:perf-list[1], |
diff --git a/tools/perf/builtin-evlist.c b/tools/perf/builtin-evlist.c index 08a7d36a2cf8..8a31f511e1a0 100644 --- a/tools/perf/builtin-evlist.c +++ b/tools/perf/builtin-evlist.c | |||
@@ -26,14 +26,22 @@ static int __cmd_evlist(const char *file_name, struct perf_attr_details *details | |||
26 | .mode = PERF_DATA_MODE_READ, | 26 | .mode = PERF_DATA_MODE_READ, |
27 | .force = details->force, | 27 | .force = details->force, |
28 | }; | 28 | }; |
29 | bool has_tracepoint = false; | ||
29 | 30 | ||
30 | session = perf_session__new(&file, 0, NULL); | 31 | session = perf_session__new(&file, 0, NULL); |
31 | if (session == NULL) | 32 | if (session == NULL) |
32 | return -1; | 33 | return -1; |
33 | 34 | ||
34 | evlist__for_each(session->evlist, pos) | 35 | evlist__for_each(session->evlist, pos) { |
35 | perf_evsel__fprintf(pos, details, stdout); | 36 | perf_evsel__fprintf(pos, details, stdout); |
36 | 37 | ||
38 | if (pos->attr.type == PERF_TYPE_TRACEPOINT) | ||
39 | has_tracepoint = true; | ||
40 | } | ||
41 | |||
42 | if (has_tracepoint && !details->trace_fields) | ||
43 | printf("# Tip: use 'perf evlist --trace-fields' to show fields for tracepoint events\n"); | ||
44 | |||
37 | perf_session__delete(session); | 45 | perf_session__delete(session); |
38 | return 0; | 46 | return 0; |
39 | } | 47 | } |
@@ -49,6 +57,7 @@ int cmd_evlist(int argc, const char **argv, const char *prefix __maybe_unused) | |||
49 | OPT_BOOLEAN('g', "group", &details.event_group, | 57 | OPT_BOOLEAN('g', "group", &details.event_group, |
50 | "Show event group information"), | 58 | "Show event group information"), |
51 | OPT_BOOLEAN('f', "force", &details.force, "don't complain, do it"), | 59 | OPT_BOOLEAN('f', "force", &details.force, "don't complain, do it"), |
60 | OPT_BOOLEAN(0, "trace-fields", &details.trace_fields, "Show tracepoint fields"), | ||
52 | OPT_END() | 61 | OPT_END() |
53 | }; | 62 | }; |
54 | const char * const evlist_usage[] = { | 63 | const char * const evlist_usage[] = { |
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c index 544e4400de13..cdbaf9b51e42 100644 --- a/tools/perf/util/evsel.c +++ b/tools/perf/util/evsel.c | |||
@@ -2298,6 +2298,29 @@ int perf_evsel__fprintf(struct perf_evsel *evsel, | |||
2298 | printed += comma_fprintf(fp, &first, " %s=%" PRIu64, | 2298 | printed += comma_fprintf(fp, &first, " %s=%" PRIu64, |
2299 | term, (u64)evsel->attr.sample_freq); | 2299 | term, (u64)evsel->attr.sample_freq); |
2300 | } | 2300 | } |
2301 | |||
2302 | if (details->trace_fields) { | ||
2303 | struct format_field *field; | ||
2304 | |||
2305 | if (evsel->attr.type != PERF_TYPE_TRACEPOINT) { | ||
2306 | printed += comma_fprintf(fp, &first, " (not a tracepoint)"); | ||
2307 | goto out; | ||
2308 | } | ||
2309 | |||
2310 | field = evsel->tp_format->format.fields; | ||
2311 | if (field == NULL) { | ||
2312 | printed += comma_fprintf(fp, &first, " (no trace field)"); | ||
2313 | goto out; | ||
2314 | } | ||
2315 | |||
2316 | printed += comma_fprintf(fp, &first, " trace_fields: %s", field->name); | ||
2317 | |||
2318 | field = field->next; | ||
2319 | while (field) { | ||
2320 | printed += comma_fprintf(fp, &first, "%s", field->name); | ||
2321 | field = field->next; | ||
2322 | } | ||
2323 | } | ||
2301 | out: | 2324 | out: |
2302 | fputc('\n', fp); | 2325 | fputc('\n', fp); |
2303 | return ++printed; | 2326 | return ++printed; |
diff --git a/tools/perf/util/evsel.h b/tools/perf/util/evsel.h index 5ded1fc0341e..8e75434bd01c 100644 --- a/tools/perf/util/evsel.h +++ b/tools/perf/util/evsel.h | |||
@@ -369,6 +369,7 @@ struct perf_attr_details { | |||
369 | bool verbose; | 369 | bool verbose; |
370 | bool event_group; | 370 | bool event_group; |
371 | bool force; | 371 | bool force; |
372 | bool trace_fields; | ||
372 | }; | 373 | }; |
373 | 374 | ||
374 | int perf_evsel__fprintf(struct perf_evsel *evsel, | 375 | int perf_evsel__fprintf(struct perf_evsel *evsel, |