搭建一個PHP效能分析平台搭建,在不用改動你程式的程式碼,通過 nginx 為你程式上方在加一層監控層(產出固定紀錄檔),分析紀錄檔的出程式資訊,進行效能分析優化
此處省略1000字,自己查詢文件
wget http://pecl.php.net/get/mongodb-1.4.0.tgz tar -zxvf mongodb-1.4.0.tgz cd mongodb-1.4.0 phpize ./configure --with-php-config=你的php-config路徑 我的是在/usr/local/Cellar/[email protected]/7.1.16_1/bin/php-config make make install
git clone https://github.com/tideways/php-profiler-extension.git cd php-profiler-extension phpize ./configure --with-php-config=你的php-config路徑 make make install
extension=tideways.so tideways.auto_prepend_library=0 extension=mongodb.so
#https://github.com/perftools/xhgui (漢化) git clone https://github.com/perftools/xhgui.git cd xhgui php install.php(看下是否有vendor這個目錄) ##專案設定 #組態檔:config/default_config.php #執行目錄:webroot #nginx rewrite規則 # location / { # try_files $uri $uri/ /index.php$is_args$query_string; # }
#xhgui 預設是採集1% ,如果是排查問題時還是希望能夠100%採集會比較方便。進入xhgui原始碼目錄,修改config/config.default.php檔案, #平時仍然按1%的取樣率取樣,防止資料增長過快,當想偵錯時,就在URL中新增debug=1的引數即可。 #在xhgui/config/config.default.php中,找到profiler.enable這裡,按如下修改: #mongo //取樣率 'profiler.enable' => function() { // url 中包含debug=1則百分百捕獲 if(!empty($_GET['debug'])){ return true; } else { // 1%取樣 return rand(1, 100) === 42; } }, //優化建議:可以給mongo資料表加上索引
//在需要的專案中的最開始,引入檔案即可 require "/dir/external/header.php"; //操作專案,即可在xhgui平台中檢視資料分析效能
效果圖如下圖
更多PHP相關技術文章,請存取PHP教學欄目進行學習!
以上就是PHP效能分析平台搭建的詳細內容,更多請關注TW511.COM其它相關文章!