cpu数据
adb shell top|findstr 包名 获取瞬时数据
adb shell dumpsys cpuinfo 获取一段时间的数据
内存
adb shell dumpsys meminfo 包名 获取一段时间 关注total数据
adb shell free -m 格式是m 关注user数据
流量
获取当前app的进程号
adb shell ps | findstr 包名
根据进程号获取流量信息
adb shell cat /proc/{pid}/net/dev
Receive 当前进程接受的数据流量
Transsmit: 当前进程发出的请求。
ech0 网卡
电池
查看电池电量信息
adb shell dumpsys battery
ac 交流电充电
user powered usb充电状态
wireless powered 无线充电状态
max charging current 最大充电电流
max charging volatage 最大充电电压
charge counter 充电次数
status 电池状态
health 健康状态
present 电池是否安装在机身
level 电量
scale 电池规模
voltage 电池电压
temperature 电池温度
technology 电池种类
修改电池信息,可以使用set
adb shell dumpsys battery set usb 1 设置为充电状态
获取应用电池的使用情况
adb shell ps | grep 包名
adb shell dumpsys batterystatus 获取电池信息
adb shell dumpsys batterystatus --reset 清空电池使用信息