码迷,mamicode.com
首页 > 其他好文 > 详细

体验 XHProf

时间:2015-08-25 17:11:26      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

调试PHP时,XDebug一直是大众的不二选择,搭配上Webgrind,可以获得不错的效果。今天看某人的栖息地里的介绍,才发现了XHProf,于是体验了一下,感觉很酷,与XDebug相比,运行更轻便(本身还包括一个web查看工具),表现更易懂,下面记录一下体验过程。 

1.安装XHProf 

wget http://pecl.php.net/get/xhprof-0.9.4.tgz  
tar zxf xhprof-0.9.4.tgz  
cd xhprof-0.9.2  
cp -r xhprof_html xhprof_lib   
cd extension  
phpize  
./configure  
make  
make install


2 . 配置php.ini  

Php.ini代码  

[xhprof]  
extension=xhprof.so  
;  
; directory used by default implementation of the iXHProfRuns  
; interface (namely, the XHProfRuns_Default class) for storing  
; XHProf runs.  
;  
xhprof.output_dir= /tmp/xhprof_dir
重启服务让修改生效,现在就可以使用XHProf了,不过为了显示效果更炫,最好继续安装Graphviz。 

3. 安装Graphviz 
wget http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.24.0.tar.gz  
tar zxf graphviz-2.24.0.tar.gz  
cd graphviz-2.24.0  
./configure  
make  
make install
安装Graphviz的目的是为了xhprof图形化web工具查看profiling log文件。安装后使用web工具查看log图形时,最常见错误是: 
提示如下: 
引用
Error: either we can not find profile data for run_id 4d7f0bd99a12f or the threshold 0.01 is too small or you do not have ‘dot’ image generation utility installed. 

且编译graphviz提示信息png: No (missing png.h),也就是dot 不支持PNG,所以需要安装libpng包,如: 
wget http://nchc.dl.sourceforge.net/project/libpng/libpng15/1.5.1/libpng-1.5.1.tar.gz  
tar zxf libpng-1.5.1.tar.gz  
cd libpng-1.5.1  
./configure  
make  
make install

然后重新编译安装graphviz,加上参数--with-png=yes。完成后,应确保命令dot在PATH环境变量里(默认应该就在路径里,一般不需要特别设置),以便XHProf能找到它。 

使用XHProf 
在你要监测的Php代码头尾部分别加入代码xhprof_enable()和xhprof_disable() 

// start profiling  
xhprof_enable();  
// run program  
....  
// stop profiler  
$xhprof_data = xhprof_disable();  
//  
// Saving the XHProf run  
// using the default implementation of iXHProfRuns.  
//  
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";  
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";  
  
$xhprof_runs = new XHProfRuns_Default();  
  
// Save the run under a namespace "xhprof_foo".  
//  
// **NOTE**:  
// By default save_run() will automatically generate a unique  
// run id for you. [You can override that behavior by passing  
// a run id (optional arg) to the save_run() method instead.]  
//  
$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_foo");  
  
echo "---------------\n".  
"Assuming you have set up the http based UI for \n".  
"XHProf at some address, you can view run at \n".  
"http:///index.php?run=$run_id&source=xhprof_foo\n".  
"---------------\n";

如此一来,会在上面设定的xhprof.output_dir目录里生成名字类似49bafaa3a3f66.xhprof_foo的数据文件,可以很方便的通过Web方式浏览效果: 

http:///index.php?run=49bafaa3a3f66&source=xhprof_foo 

目前显示的是表格形式的显示,点击页面上的[View Full Callgraph],就能看到精美的图片显示了。看看下面的screenshot. 

技术分享
技术分享 参考文档
官方文档地址:

http://mirror.facebook.net/facebook/xhprof/doc.html
徐仁禄 <xurenlu [at] gmail.com> 翻译的
http://www.162cm.com/p/xhprofdoc.html
FILE
仅供参考
使用XHProf, 在你要监测的Php代码头尾部分别加入代码xhprof_enable()和xhprof_disable()

php代码

<?php
// start profiling
xhprof_enable();
// run program
....
// stop profiler
$xhprof_data = xhprof_disable();
//
// Saving the XHProf run
// using the default implementation of iXHProfRuns.
//
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";


$xhprof_runs = new XHProfRuns_Default();


// Save the run under a namespace "xhprof_foo".
//
// **NOTE**:
// By default save_run() will automatically generate a unique
// run id for you. [You can override that behavior by passing
// a run id (optional arg) to the save_run() method instead.]
//
$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_foo");


echo "---------------\n".
"Assuming you have set up the http based UI for \n".
"XHProf at some address, you can view run at \n".
"http://<xhprof-ui-address>/index.php?run=$run_id&source=xhprof_foo\n".
"---------------\n";



如此一来,会在上面设定的 xhprof.output_dir 目录里生成名字类似 49bafaa3a3f66.xhprof_foo 的数据文件,可以很方便的通过Web方式浏览效果:
http://<xhprof-ui-address>/index.php?run=49bafaa3a3f66&source=xhprof_foo
目前显示的是表格形式的显示,点击页面上的__View Full Callgraph__,就能看到精美的图片显示了。

体验 XHProf

标签:

原文地址:http://my.oschina.net/mickelfeng/blog/496902

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!