list_processes
Lists all processes captured in a Perfetto trace, including OS PID, name, and timestamps. Use as a starting point for Android or Linux trace analysis.
Instructions
List every process captured in the trace: upid (trace-internal id), pid (OS pid), name, start_ts, end_ts. Read-only.
Use when: entry point for Android and Linux trace analysis, or picking the right pid/upid to feed into list_threads_in_process or chrome_main_thread_hotspots.
Don't use for: Chrome traces — the dedicated chrome_* tools answer most common questions without process-level navigation.
Parameters: none — operates on the loaded trace.
Empty result: rare; would mean the trace captured no process metadata at all.
Errors when: no trace is loaded — call load_trace first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||