Perf,一款性能剖析工具。
安装步骤
当前环境为:ubuntu18.04
sudo apt-get install linux-tools-common
运行perf指令,提示缺少模块,如下:
sudo apt-get install linux-tools-5.4.0-107-generic
sudo apt-get install linux-cloud-tools-5.4.0-generic
sudo apt-get install linux-tools-generic
sudo apt-get install linux-cloud-tools-generic
输入perf指令,然后发现安装成功:
?
Perf操作指令?
Record指令:
- 每秒采集99次,进行录制,保存文件默认为perf.data,保存到控制台开启的当前目录下。
# Sample on-CPU functions for the specified command, at 99 Hertz:
perf record -F 99
?
Perf火焰图查看工具
- 使用Github上的开源工具,FlameGraph,地址:
git clone https://github.com/brendangregg/FlameGraph.git
?eg:例如使用perf record -F 99 -a -g?生成一段数据,结果保存在perf.data中
# 给perf文件权限,登录到su权限下
chmod -R 777 perf.data
# 转换成out.perf文件
sudo perf script -i perf.data > out.perf
# 利用工具转换为out.folded文件
FlameGraph/stackcollapse-perf.pl out.perf > out.floded
#转换为svg文件
FlameGraph/flamegraph.pl out.floded > out.svg
如果遇到权限问题,记得给777权限
效果如下:
?
|