部署xhprof监控php效率(linux版本)

部署xhprof监控php效率

2015年5月26日  | 标签: php监控

1、安装xhprof扩展

下载地址:https://pecl.php.net/package/xhprof

2、配置php.ini

1
2
3
[xhprof]
extension=xhprof.so
xhprof.output_dir=/tmp

3、下载web界面程序并部署
下载地址:https://github.com/phacility/xhprof
将apache或者nginx解析地址解析到xhprof_html目录

4、在你需要监控的页面或者应用中添加代码
a/页头添加如下代码

1
2
3
if ( extension_loaded ( 'xhprof' )) {
     xhprof_enable();
}

b/页尾添加如下代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if ( extension_loaded ( "xhprof" )) {
      $xhprof_name = "test001" ;
      $XHPROF_ROOT = "/vagrant_data/xhprof" ;
      include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php" ;
      include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php" ;
 
      $xhprof_data = xhprof_disable();
      $xhprof_runs = new XHProfRuns_Default();
      $run_id = $xhprof_runs ->save_run( $xhprof_data , $xhprof_name );
 
      echo "---------------\n" .
      "Assuming you have set up the http based UI for \n" .
      "XHProf at some address, you can view run at \n" .
      "http://192.168.33.10:9998/index.php?run=$run_id&source=xhprof_foo\n" .
      "---------------\n" ;
}

5、访问解析到xhprof的url

 


来源:http://www.phpno.com/php-xhprof.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值