toolkit是tideway官方提供的性能分析的命令行工具。若是你只是本地開發調試接口性能,不想安裝xhgui,那麼使用toolkit就足夠了php
git clone https://github.com/tideways/php-xhprof-extension.git cd php-profiler-extension phpize ./configure make && make install
在php.ini中加入git
extension=tideways_xhprof.so
重啓php-fpmgithub
service php-fpm restart
go get github.com/tideways/toolkit # 安裝graphviz # macOS brew install graphviz # ubuntu sudo apt-get install -y graphviz
alias tk=toolkit
在程序入口中加入shell
if (extension_loaded('tideways_xhprof')) { tideways_xhprof_enable(TIDEWAYS_XHPROF_FLAGS_CPU | TIDEWAYS_XHPROF_FLAGS_MEMORY); } // 你的代碼 application(); if (extension_loaded('tideways_xhprof')) { $data = tideways_xhprof_disable(); file_put_contents( sprintf('%s/app.xhprof', '/path/to'), json_encode($data) ); }
執行下代碼,而後就會生成/path/to/app.xphrofjson
tk analyze-xhprof /path/to/app.xphrof
默認性能分析的指標是wt_excl,其餘的指標有ubuntu
tk generate-xhprof-graphviz /path/to/app.xhprof dot -Tpng callgraph.dot > callgraph.png
顯示的指標有app