Profiler的使用

饶谦
2023-12-01

Profiler是一个分析app性能的强大工具合辑,可以分析内存、cpu、启动时间、网络情况、功耗等各个指标

cpu使用率
内存占用
网络流量监控
耗电量监控

CPU Profiler 可以让我们查看应用进程中的每个线程,某段时间内执行了哪些函数,以及在其执行期间每个函数占用CPU的时间

还可以使用函数跟踪来识别调用方和被调用方。 据此可以确定哪些函数负责调用常常会消耗大量特定资源的任务,并尝试优化应用代码以避免不必要的开支

JVM CPU Profiler技术原理及源码深度解析
https://www.cnblogs.com/meituantech/p/11670535.html

https://www.jianshu.com/p/378d617663ed

https://blog.csdn.net/bihansheng2010/article/details/103633432

Memory Profiler

https://www.jianshu.com/p/0e1b1c0b30e4

https://developer.android.com/studio/profile/monitor

profile的使用

 类似资料: