国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Tideways、xhprof 和 xhgui 打造 PHP 非侵入式監控平臺

shevy / 3899人閱讀

摘要:參考配置添加,告訴程序在執行前要調用的服務或者也可以在修改配置文件,告訴程序在執行前要調用的服務參考鏈接

推薦閱讀

Tideways、xhprof 和 xhgui 打造 PHP 非侵入式監控平臺

超全的設計模式簡介(45種)

design-patterns-for-humans 中文版

MongoDB 資源、庫、工具、應用程序精選列表中文版

有哪些鮮為人知,但是很有意思的網站?

一份攻城獅筆記

每天搜集 Github 上優秀的項目

一些有趣的民間故事

超好用的谷歌瀏覽器、Sublime Text、Phpstorm、油猴插件合集

環境準備

安裝之前確保已經正確安裝了以下軟件

PHP

Nginx

Mongodb

安裝 PHP mongodb 擴展
$ sudo pecl install mongodb

PHP 配置文件中添加

[mongodb]
extension=mongodb.so
安裝 PHP tideaways 擴展

常規編譯安裝

$ git clone https://github.com/tideways/php-xhprof-extension.git
$ cd /path/php-xhprof-extension
$ phpize
$ ./configure
$ make
$ sudo make install

PHP 配置文件中添加

[tideways]
extension=tideways_xhprof.so
; 不需要自動加載,在程序中控制就行
tideways.auto_prepend_library=0
; 頻率設置為100,在程序調用時可以修改
tideways.sample_rate=100
安裝 xhgui-branch(xhgui 的漢化版)
$ git clone https://github.com/laynefyc/xhgui-branch.git
$ cd xhgui-branch
$ php install.php

修改 xhgui-branch 配置文件

 "tideways_xhprof",
     ...
    "save.handler" => "mongodb",
    "db.host" => "mongodb://127.0.0.1:27017",
    "db.db" => "xhprof",
     ...
);
啟動 mongodb 并設置 xhgui 索引,命令如下:
$ 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 本地虛擬主機配置參考
server {
    listen       80;
    server_name  xhgui.test;
    root         /Users/yaozm/Documents/wwwroot/xhgui-branch/webroot;

    # access_log  /usr/local/var/log/nginx/access.log;
    error_log  /usr/local/var/log/nginx/error.log;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
        index  index.php index.html index.htm;
    }
}
針對要分析的站點進行設置,直接在要分析站點的 nginx 配置中增加以下項,然后使配置生效就可以了。
$ fastcgi_param PHP_VALUE "auto_prepend_file=/path/xhgui-branch/external/header.php";

參考配置

server {
    listen       80;
    server_name  laravel.test;
    root         /Users/yaozm/Documents/wwwroot/laravel/public;

    # access_log  /usr/local/var/log/nginx/access.log;
    error_log  /usr/local/var/log/nginx/error.log;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
        index  index.php index.html index.htm;
    }
     # 添加 PHP_VALUE,告訴 PHP 程序在執行前要調用的服務
    fastcgi_param PHP_VALUE "auto_prepend_file=/path/wwwroot/xhgui-branch/external/header.php";
}
或者也可以在修改 PHP 配置文件,告訴 PHP 程序在執行前要調用的服務
; Automatically add files before PHP document.
; http://php.net/auto-prepend-file
auto_prepend_file = "/path/wwwroot/xhgui-branch/external/header.php"

參考鏈接

https://github.com/phacility/xhprof

https://github.com/perftools/xhgui

https://github.com/tideways/php-xhprof-extension

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

https://blog.it2048.cn/article-tideways-xhgui

https://zhuanlan.zhihu.com/p/30832165

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/31725.html

相關文章

  • Tidewaysxhprof xhgui 打造 PHP 侵入監控平臺

    摘要:參考配置添加,告訴程序在執行前要調用的服務或者也可以在修改配置文件,告訴程序在執行前要調用的服務參考鏈接 showImg(https://segmentfault.com/img/bVbt7t1?w=2880&h=2608); 推薦閱讀 Tideways、xhprof 和 xhgui 打造 PHP 非侵入式監控平臺 超全的設計模式簡介(45種) design-patterns-for...

    Cympros 評論0 收藏0
  • Docker的LNMP一鍵安裝開發環境 + PHP侵入監控平臺xhgui(優化系統性能、定位Bu

    摘要:的一鍵安裝開發環境非侵入式監控平臺優化系統性能定位的神器之前在用做本地開發環境,因為沒有這些對程序性能追蹤及分析的工具,所以索性基于的編排了一套自己使用。 DNMP PLUS dnmp = Docker + Nginx + MySQL + PHP + Redis + MongDB plus = xhgui + xhprof + tideways dnmp-plus = PHPer 的一...

    AlanKeene 評論0 收藏0
  • Docker的LNMP一鍵安裝開發環境 + PHP侵入監控平臺xhgui(優化系統性能、定位Bu

    摘要:日志日志是我們用得最多的日志,所以我們單獨放在根目錄下。會目錄映射容器的目錄,所以在配置文件中,需要輸出的位置,我們需要配置到目錄,如日志因為容器中的使用的是用戶啟動,它無法自行在下的增加日志文件。 DNMP PLUS dnmp = Docker + Nginx + MySQL + PHP + Redis + MongDB plus = xhgui + xhprof + tideway...

    luzhuqun 評論0 收藏0

發表評論

0條評論

shevy

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<