Commit acfd65c8 authored by Ben Gainey's avatar Ben Gainey Committed by Namhyung Kim

tools: perf: Expose sample ID / stream ID to python scripts

perf script exposes the evsel_name to python scripts as part of the data
passed to the sample or tracepoint handler function, and it passes the id and
stream_id to the throttled/unthrottled handler functions. This makes matching
throttle events and samples difficult.

To make this possible, this change exposes the sample id and stream_id values
to the script.
Signed-off-by: default avatarBen Gainey <ben.gainey@arm.com>
Reviewed-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Cc: will@kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: default avatarNamhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20240123103137.1890779-2-ben.gainey@arm.com
parent ffd85653
...@@ -642,8 +642,8 @@ SUPPORTED FIELDS ...@@ -642,8 +642,8 @@ SUPPORTED FIELDS
Currently supported fields: Currently supported fields:
ev_name, comm, pid, tid, cpu, ip, time, period, phys_addr, addr, ev_name, comm, id, stream_id, pid, tid, cpu, ip, time, period, phys_addr,
symbol, symoff, dso, time_enabled, time_running, values, callchain, addr, symbol, symoff, dso, time_enabled, time_running, values, callchain,
brstack, brstacksym, datasrc, datasrc_decode, iregs, uregs, brstack, brstacksym, datasrc, datasrc_decode, iregs, uregs,
weight, transaction, raw_buf, attr, cpumode. weight, transaction, raw_buf, attr, cpumode.
......
...@@ -858,6 +858,10 @@ static PyObject *get_perf_sample_dict(struct perf_sample *sample, ...@@ -858,6 +858,10 @@ static PyObject *get_perf_sample_dict(struct perf_sample *sample,
pydict_set_item_string_decref(dict, "ev_name", _PyUnicode_FromString(evsel__name(evsel))); pydict_set_item_string_decref(dict, "ev_name", _PyUnicode_FromString(evsel__name(evsel)));
pydict_set_item_string_decref(dict, "attr", _PyBytes_FromStringAndSize((const char *)&evsel->core.attr, sizeof(evsel->core.attr))); pydict_set_item_string_decref(dict, "attr", _PyBytes_FromStringAndSize((const char *)&evsel->core.attr, sizeof(evsel->core.attr)));
pydict_set_item_string_decref(dict_sample, "id",
PyLong_FromUnsignedLongLong(sample->id));
pydict_set_item_string_decref(dict_sample, "stream_id",
PyLong_FromUnsignedLongLong(sample->stream_id));
pydict_set_item_string_decref(dict_sample, "pid", pydict_set_item_string_decref(dict_sample, "pid",
_PyLong_FromLong(sample->pid)); _PyLong_FromLong(sample->pid));
pydict_set_item_string_decref(dict_sample, "tid", pydict_set_item_string_decref(dict_sample, "tid",
...@@ -1306,7 +1310,7 @@ static void python_export_sample_table(struct db_export *dbe, ...@@ -1306,7 +1310,7 @@ static void python_export_sample_table(struct db_export *dbe,
struct tables *tables = container_of(dbe, struct tables, dbe); struct tables *tables = container_of(dbe, struct tables, dbe);
PyObject *t; PyObject *t;
t = tuple_new(25); t = tuple_new(27);
tuple_set_d64(t, 0, es->db_id); tuple_set_d64(t, 0, es->db_id);
tuple_set_d64(t, 1, es->evsel->db_id); tuple_set_d64(t, 1, es->evsel->db_id);
...@@ -1333,6 +1337,8 @@ static void python_export_sample_table(struct db_export *dbe, ...@@ -1333,6 +1337,8 @@ static void python_export_sample_table(struct db_export *dbe,
tuple_set_d64(t, 22, es->sample->insn_cnt); tuple_set_d64(t, 22, es->sample->insn_cnt);
tuple_set_d64(t, 23, es->sample->cyc_cnt); tuple_set_d64(t, 23, es->sample->cyc_cnt);
tuple_set_s32(t, 24, es->sample->flags); tuple_set_s32(t, 24, es->sample->flags);
tuple_set_d64(t, 25, es->sample->id);
tuple_set_d64(t, 26, es->sample->stream_id);
call_object(tables->sample_handler, t, "sample_table"); call_object(tables->sample_handler, t, "sample_table");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment