The checklists below show how to achieve some common tasks in the codebase.
format
file for your event. The location of the file depends where tracefs
is mounted but can often be found at /sys/kernel/debug/tracing/events/EVENT_GROUP/EVENT_NAME/format
.src/traced/probes/ftrace/test/data/synthetic/events/EVENT_GROUP/EVENT_NAME/format
.tools/run_ftrace_proto_gen
. This will update protos/perfetto/trace/ftrace/ftrace_event.proto
and protos/perfetto/trace/ftrace/GROUP_NAME.proto
.tools/gen_all out/YOUR_BUILD_DIRECTORY
. This will update src/traced/probes/ftrace/event_info.cc
and protos/perfetto/trace/perfetto_trace.proto
.trace_processor
is desired update src/trace_processor/importers/ftrace/ftrace_parser.cc to parse the event.Here is an example change which added the ion/ion_stat
event.
perfetto/src/trace_processor/stdlib/
.BUILD.gn
./stdlib/
), module name (directory name) has to be added to the list in /stdlib/BUILD.gn
.Files inside the standard library have to be formatted in a very specific way, as its structure is used to generate documentation. There are presubmit checks, but they are not infallible.
CREATE_FUNCTION
, CREATE TABLE/VIEW
or CREATE_VIEW_FUNCTION
inside.{module_name}_
or {internal_}
. Views/tables are must be [a-z_]
, while functions are [A-Z_]
. When a module is imported (using the IMPORT
function), objects prefixed with internal should not be used.common
module. The name of functions/views/tables inside should not be prefixed with common_
, as they are supposed to be module agnostic and widely used.-- @column {col name} {col description}
.-- @arg {arg name} {arg type} {arg description}
. Arg name should follow [a-z_]*
, arg type has to be exactly the same as specified in the function, so [A-Z]*
.-- @ret {return type} {return description}
. Return type should be exactly the same as specified in the function, so [A-Z]*
.-- @arg {arg name} {arg type} {arg description}
. Arg name should follow [a-z_]*
, arg type has to be exactly the same as specified in the function, so [A-Z]*
.-- @column {col name} {col description}
.NOTE: Break lines outside of import description will be ignored.
Example of properly formatted view in module android
:
-- Count Binder transactions per process. -- -- @column process_name Name of the process that started the binder transaction. -- @column pid PID of the process that started the binder transaction. -- @column slice_name Name of the slice with binder transaction. -- @column event_count Number of binder transactions in process in slice. CREATE VIEW android_binder_metrics_by_process AS SELECT process.name AS process_name, process.pid AS pid, slice.name AS slice_name, COUNT(*) AS event_count FROM slice INNER JOIN thread_track ON slice.track_id = thread_track.id INNER JOIN thread ON thread.utid = thread_track.utid INNER JOIN process ON thread.upid = process.upid WHERE slice.name GLOB 'binder*' GROUP BY process_name, slice_name;
Example of function in module common
:
-- Extracts an int value with the given name from the metadata table. -- -- @arg name STRING The name of the metadata entry. -- @ret LONG int_value for the given name. NULL if there's no such entry. SELECT CREATE_FUNCTION( 'EXTRACT_INT_METADATA(name STRING)', 'LONG', 'SELECT int_value FROM metadata WHERE name = ($name)');
Example of view function in module android
:
-- Given a launch id and GLOB for a slice name, returns columns for matching slices. -- -- @arg launch_id INT Id of launch. -- @arg slice_name STRING Name of slice with launch. -- @column slice_name Name of slice with launch. -- @column slice_ts INT Timestamp of slice start. -- @column slice_dur INT Duration of slice. -- @column thread_name STRING Name of thread with slice -- @column arg_set_id INT Arg set id. SELECT CREATE_VIEW_FUNCTION( 'ANDROID_SLICES_FOR_LAUNCH_AND_SLICE_NAME(launch_id INT, slice_name STRING)', 'slice_name STRING, slice_ts INT, slice_dur INT, thread_name STRING, arg_set_id INT', ' SELECT slice_name, slice_ts, slice_dur, thread_name, arg_set_id FROM thread_slices_for_all_launches WHERE launch_id = $launch_id AND slice_name GLOB $slice_name ' );
BUILD.gn
file should be updated as well.tools/gen_all out/YOUR_BUILD_DIRECTORY
. This will update the generated headers containing the descriptors for the proto.out/
directory you might have to rerun tools/setup_all_configs.py
.BUILD.gn
file should be updated as well.tools/ninja -C out/YOUR_BUILD_DIRECTORY
.tests.*.py
files in a proper test/trace_processor subfolder.tools/diff_test_trace_processor.py <path to trace processor binary>
.Here is an example change which added the time_in_state
metric.
tools/diff_test_trace_processor.py <path to trace processor shell binary>
.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:
<metric name>_event
.android_startup
metric, we create a view named android_startup_event
._event
suffix in the table name is important.initialiseHelperViews
method of trace_controller.ts
.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 |
group_name | string | Optional | Name of the track group under which the track appears. All tracks with the same group_name are placed under the same group by that name. Tracks that lack this field or have NULL value in this field are displayed without any grouping. |
0
duration slices with special rendering on the UI side.