7.0 KiB
Common tasks
The checklists below show how to achieve some common tasks in the codebase.
Add a new ftrace event
- Find the
format
file for your event. The location of the file depends wheretracefs
is mounted but can often be found at/sys/kernel/debug/tracing/events/EVENT_GROUP/EVENT_NAME/format
. - Copy the format file into the codebase at
src/traced/probes/ftrace/test/data/synthetic/events/EVENT_GROUP/EVENT_NAME/format
. - Add the event to tools/ftrace_proto_gen/event_list.
- Run
tools/run_ftrace_proto_gen
. This will updateprotos/perfetto/trace/ftrace/ftrace_event.proto
andprotos/perfetto/trace/ftrace/GROUP_NAME.proto
. - Run
tools/gen_all out/YOUR_BUILD_DIRECTORY
. This will updatesrc/traced/probes/ftrace/event_info.cc
andprotos/perfetto/trace/perfetto_trace.proto
. - If special handling in
trace_processor
is desired update src/trace_processor/importers/ftrace/ftrace_parser.cc to parse the event. - Upload and land your change as normal.
Here is an example change which added the ion/ion_stat
event.
{#new-metric} Add a new trace-based metric
- Create the proto file containing the metric in the protos/perfetto/metrics folder. The appropriate
BUILD.gn
file should be updated as well. - Import the proto in protos/perfetto/metrics/metrics.proto and add a field for the new message.
- Run
tools/gen_all out/YOUR_BUILD_DIRECTORY
. This will update the generated headers containing the descriptors for the proto.
- Note: this step has to be performed any time any metric-related proto is modified.
- Add a new SQL file for the metric to src/trace_processor/metrics. The appropriate
BUILD.gn
file should be updated as well.
- To learn how to write new metrics, see the trace-based metrics documentation.
- Build all targets in your out directory with
tools/ninja -C out/YOUR_BUILD_DIRECTORY
. - Add a new diff test for the metric. This can be done by adding files to the test/trace_processor folder and modifying one of the index files listed in /test/trace_processor/include_index.
- Run the newly added test with
tools/diff_test_trace_processor.py <path to trace processor binary>
. - Upload and land your change as normal.
Here is an example change which added the time_in_state
metric.
Add a new trace processor table
- Create the new table in the appropriate header file in src/trace_processor/tables by copying one of the existing macro definitions.
- Make sure to understand whether a root or derived table is needed and copy the appropriate one. For more information see the trace processor documentation.
- Register the table with the trace processor in the constructor for the TraceProcessorImpl class.
- If also implementing ingestion of events into the table:
- Modify the appropriate parser class in src/trace_processor/importers and add the code to add rows to the newly added table.
- Add a new diff test for the added parsing code and table using
tools/add_tp_diff_test.py
. - Run the newly added test with
tools/diff_test_trace_processor.py <path to trace processor binary>
. - Upload and land your change as normal.
{#new-annotation} Add a new annotation
NOTE: all currently implemented annotations are based only on the name of the slice. It is straightforward to extend this to also consider ancestors and other similar properties; we plan on doing this in the future.
- Change the
DescribeSlice
function as appropriate.
- The inputs are the table containing all the slices from the trace and the id of the slice which an embedder (e.g. the UI) is requesting a description for.
- The output is a
SliceDescription
which is simply apair<description, doc link>
.
- Upload and land your change as normal.
Adding new derived events
As derived events depend on metrics, the initial steps are same as that of developing a metric (see above).
NOTE: the metric can be just an empty proto message during prototyping or if no summarization is necessary. However, generally if an event is important enough to display in the UI, it should also be tracked in benchmarks as a metric.
To extend a metric with annotations:
- Create a new table or view with the name
<metric name>_event
.
- For example, for the
android_startup
metric, we create a view namedandroid_startup_event
. - Note that the trailing
_event
suffix in the table name is important. - The schema required for this table is given below.
- List your metric in the
initialiseHelperViews
method oftrace_controller.ts
. - Upload and land your change as normal.
The schema of the <metric name>_event
table/view is as follows:
Name | Type | Presence | Meaning |
---|---|---|---|
track_type |
string |
Mandatory | 'slice' for slices, 'counter' for counters |
track_name |
string |
Mandatory | Name of the track to display in the UI. Also the track identifier i.e. all events with same track_name appear on the same track. |
ts |
int64 |
Mandatory | The timestamp of the event (slice or counter) |
dur |
int64 |
Mandatory for slice, NULL for counter | The duration of the slice |
slice_name |
string |
Mandatory for slice, NULL for counter | The name of the slice |
value |
double |
Mandatory for counter, NULL for slice | The value of the counter |
Known issues:
- Nested slices within the same track are not supported. We plan to support this once we have a concrete usecase.
- Tracks are always created in the global scope. We plan to extend this to threads and processes in the near future with additional contexts added as necessary.
- Instant events are currently not supported in the UI but this will be
implemented in the near future. In trace processor, instants are always
0
duration slices with special rendering on the UI side. - There is no way to tie newly added events back to the source events in the trace which were used to generate them. This is not currently a priority but something we may add in the future.