如何在终端中显示火焰图

安装 perf 工具

yum install -y perf

拉取 tfg 仓库

git clone https://github.com/4rtzel/tfg

使用 perf 收集栈信息

perf record -g -a -p {pid} -- sleep {time}
perf script > on.stacks

进入 tfg 目录,显示火焰图

tfg.py -t perf on.stacks

详细的使用方法可以参考 tfg 库的 README

评论
  • oushu7529 回复

    Git clone SSH version:

    git clone git@github.com:4rtzel/tfg.git
    
test