标签:bubuko 应用 cpu占用率 调度 相关 spl delay show cond
adb shell top
一、其中相关参数:
比如:
adb shell top -m 5
表示打印出5个进程数,以及相关进程运行所消耗的CPU值百分比。
第一栏相关参数解释:
第二栏相关参数解释:
二、命令使用
三、打印出来的数据保存到本地
adb shell top -m 5 > d:\cpu.txt 表示打印的5个进程的数据保存到本地D盘的cpu.txt文件中
四、指定查看某个应用的数据
例如: 监测一次微博的CPU占用情况:adb shell top -n 1 | grep com.sina.weibo
10秒刷新一次显示CPU占用情况:adb shell top -d 10 | grep com.sina.weibo
实时监测微博的CPU占用情况:adb shell top |grep com.sina.weibo
标签:bubuko 应用 cpu占用率 调度 相关 spl delay show cond
原文地址:https://www.cnblogs.com/Qliupeng/p/9416219.html