0
点赞
收藏
分享

微信扫一扫

ubuntu cargo flamegraph


cargo flamegraph

有如下选项:

运行指定binnary

-b your-binnary

指定采样频率

-F xxx

单位好像是Hz

传参

-- your-arg your-value

传入perf参数

-c "要给perf的参数

比如

cargo flamegraph -c "record -e branch-misses -c 100 --call-graph lbr -g"

例子

cargo flamegraph -F 1

cargo flamegraph -c "recor
d -a -F 1 --call-graph=dwarf" --bin transaction-replayer -- --start-epoch 18000000 --epoch-to-execute 1000000 --commit-interval 10000

注意用了​​-c​​​时,​​-F 1​​​要放到​​-c​​后面的perf参数里。

常见错误的处理

could not spawn perf

sudo apt install

WARNING: perf not found for kernel 4.15.0-144

You may need to install the following packages for this specific kernel:
linux-tools-4.15.0-144-generic
linux-cloud-tools-4.15.0-144-generic

You may also want to install one of the following packages to keep up to date:
linux-tools-generic
linux-cloud-tools-generic
failed to sample program

按照提示安装即可:

sudo apt install

参考文献

​​ubuntu18.04安装perf​​​​https://github.com/brendangregg/FlameGraph/issues/209​​​​https://github.com/flamegraph-rs/flamegraph​​


举报

相关推荐

0 条评论