perf + 火焰圖分析程序性能

一、perf命令簡要介紹mysql

性能調優時,咱們一般須要分析查找到程序百分比高的熱點代碼片斷,這便須要使用 perf record 記錄單個函數級別的統計信息,並使用 perf report 來顯示統計結果;git

perf recordgithub

perf reportsql

舉例:svg

sudo perf record -e cpu-clock -g -p 2548函數

-g 選項是告訴perf record額外記錄函數的調用關係工具

-e cpu-clock 指perf record監控的指標爲cpu週期性能

-p 指定須要record的進程pidspa

 

程序運行完以後,perf record會生成一個名爲perf.data的文件,若是以前已有,那麼以前的perf.data文件會被覆蓋blog

得到這個perf.data文件以後,就須要perf report工具進行查看

perf report -i perf.data

-i 指定要查看的文件

 以診斷mysql爲例,report結果:

$sudo perf report  -i perf.data

 

這種格式很不直觀

 二、使用火焰圖展現結果

一、Flame Graph項目位於GitHub上:https://github.com/brendangregg/FlameGraph

二、能夠用git將其clone下來:git clone https://github.com/brendangregg/FlameGraph.git

 

咱們以perf爲例,看一下flamegraph的使用方法:

一、第一步

$sudo perf record -e cpu-clock -g -p 28591

Ctrl+c結束執行後,在當前目錄下會生成採樣數據perf.data.

二、第二步

用perf script工具對perf.data進行解析

perf script -i perf.data &> perf.unfold

三、第三步

將perf.unfold中的符號進行摺疊:

#./stackcollapse-perf.pl perf.unfold &> perf.folded

四、最後生成svg圖:

./flamegraph.pl perf.folded > perf.svg

相關文章
相關標籤/搜索