使用XHProf分析PHP性能瓶頸(二)

上一篇文章裏,咱們介紹瞭如何基於xhprof擴展來分析PHP性能,並記錄到日誌裏,最後使用xhprof擴展自帶的UI在web裏展現出來。本篇文章將講述2個知識點:php

  • 使用xhgui代替xhprof的默認UI界面,更便於分析
  • 使用tideways擴展替換xhprof擴展

使用更漂亮的UI: xhgui

xhgui支持 XHProf, Uprofiler或者Tideways 擴展,也就是說,只要安裝了這幾種擴展中的一種便可。html

本次測試中,實際使用了tideways擴展(切換爲XHProf擴展後web裏看不到數據,緣由未知。切換爲Uprofiler也沒有數據。)。nginx

xhprof雖然來自facebook但已經好久不更新,官方源已經顯示This package is abandoned and no longer maintained(此包已廢棄,再也不維護)。tideways剛好相反,一直有商業公司在維護,而且積極的支持了PHP7。兩個擴展都是開源的,綜上所述我建議你們選擇tideways來分析代碼。git

安裝tideways擴展:github

wget https://github.com/tideways/php-xhprof-extension/archive/v4.1.5.tar.gz -O php-xhprof-extension-4.1.5.tar.gz
tar xzf /php-xhprof-extension-4.1.5.tar.gz 
cd php-xhprof-extension-4.1.5 
phpize  
./configure
make && make install

安裝xhgui

cd  /work/
git clone https://github.com/perftools/xhgui.git xhgui

若是須要安裝中文界面的,能夠:web

git clone https://github.com/laynefyc/xhgui-branch.git  xhgui

而後安裝xhgui依賴:mongodb

cd xhgui
php install.php

安裝須要等待幾分鐘,請耐心等待。segmentfault

設置緩存目錄的權限,容許nginx建立文件:瀏覽器

chmod -R 777

xhgui已經把注入入口文件都寫好了,位於external/header.php,無需咱們手動去寫相似上一篇的xhprof.inc.php注入文件。緩存

安裝MongoDB及客戶端

xhgui 把日誌寫到了MongoDB,因此使用xhgui須要安裝MongoDB服務端。此處省略安裝、啓動MongoDB服務端過程。

爲提升 MongoDB 的性能,你能夠運行如下指令以添加索引:

$ /usr/local/mongodb/bin/mongo
> use xhprof
db.results.ensureIndex( { 'meta.SERVER.REQUEST_TIME' : -1 } )  
db.results.ensureIndex( { 'profile.main().wt' : -1 } )  
db.results.ensureIndex( { 'profile.main().mu' : -1 } )  
db.results.ensureIndex( { 'profile.main().cpu' : -1 } )  
db.results.ensureIndex( { 'meta.url' : 1 } )

同理,因爲xhgui是PHP寫的,還須要讀取MongoDB裏的數據,須要安裝MongoDB php 客戶端:

pecl install mongodb

而後在php.ini文件添加配置:

[mongo]
extension=mongo.so

查看擴展是否安裝成功:

php -m | grep mongo

而後重啓php-fpm服務。

配置xhgui

xhgui的config目錄有一個config.default.php,複製爲config.php,若是mongodb地址不是默認的,修改:

'db.host' => 'mongodb://127.0.0.1:27017',

還有修改採樣頻率,默認是1/100,測試的話改成true:

'profiler.enable' => function() {
        //return rand(1, 100) === 42;
        return true;
    },

配置項目注入

上一篇文章中,咱們介紹到,注入的入口文件能夠寫到php.ini或者nginx,我建議寫在nginx配置,這樣只會影響該nginx對應的項目,而不是全部使用該php環境的項目。入口文件使用xhgui自帶的注入文件:

jifen.cc.conf

location ~ \.php$ {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    fastcgi_param PHP_VALUE "auto_prepend_file=/work/xhgui/external/header.php";
    include        fastcgi_params;
}

配置xhgui web

咱們修改xhprof.test.com.conf爲:

server {
    listen       80;
    server_name  xhprof.test.com;

    #root /work/xhprof/xhprof_html;
    root /work/xhgui/webroot/;
    index index.php index.html;
    
    location / {
       if (!-e $request_filename) {
            rewrite . /index.php last;
        }
    }

    location ~ \.php$ {
        
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
    
}

重啓nginx服務。

咱們請求幾回應用的接口,打開瀏覽器輸入http://xhprof.test.com/,能夠看到:


點擊某次請求進去看詳情:

參考

一、PHP性能追蹤及分析工具xhprof的安裝與使用 - 馬新才的技術博客 - SegmentFault 思否
http://www.javashuo.com/article/p-eejqmuix-d.html
二、Tideways和xhgui打造PHP非侵入式監控平臺 | 我是大熊
http://blog.it2048.cn/article-tideways-xhgui/

相關文章
相關標籤/搜索