我想随着时间的推移获取 CPU 利用率并将记录转换为绘图图。我调查了一些即时使用的方法,比如 shell 命令top
,dumpsys
.
Usage: top [ -m max_procs ] [ -n iterations ] [ -d delay ] [ -s sort_column ] [ -t ] [ -h ]
-m num Maximum number of processes to display.
-n num Updates to show before exiting.
-d num Seconds to wait between updates.
-s col Column to sort by (cpu,vss,rss,thr).
-t Show threads instead of processes.
-h Display this help screen.
~$ adb shell dumpsys cpuinfo
我尝试自定义图表TaskSpy
并添加一些细节进行分析。在PC/MAC上分析会更好。我可以通过 adb shell 命令定期有效地记录数据吗?