tideways + xhgui 搭建 php 性能检测环境

php  

tideways + xhgui 搭建 php 性能检测环境

tideways 作为 php 扩展,收集程序运行中的各种参数,并且存储在 MongoDB 中,xhgui 作为 web 页面,负责取数据和可视化操作

tideways 介绍

xhprof 扩展是 Facebook 开发的,但是目前已经不再维护和更新,不支持 php7 及以上的版本,tideways 是在 xhprof 上 fork 出来继续维护的项目,是开源项目。只是 UI 部分收费

xhgui 项目

是一个可视化 web 界面,目前好像支持到 php7.2,在使用中,项目开发可以使用 php7.4 ,但是指向 xhgui 目录的用 php7.2 打开

安装

安装 MongoDB

  1. ### mac
  2. brew tap mongodb/brew
  3. brew install mongodb-community@4.2
  4. ### centos
  5. yum install -y mongodb-org
  6. 运行 MongoDB
  7. mongod --config /usr/local/etc/mongod.conf

安装 tideways 扩展

  1. wget https://github.com/tideways/php-xhprof-extension/archive/master.zip
  2. 解压
  3. cd php-xhprof-extension-master
  4. phpize
  5. ./configure
  6. make
  7. make install
  8. 配置 php.ini
  9. extension=tideways.so
  10. tideways.auto_prepend_library=0

安装 xhgui

1、安装

  1. git clone https://github.com/yiqiang3344/xhgui-branch.git
  2. cd xhgui
  3. php install.php

2、 修改配置

配置文件位于项目目录下的 config/config.default.php

3、在 webroot 路径下执行

  1. 注意在 php7.4 下,web 页面打开会报错,所有这里的 php 版本应该 <= 7.2
  2. /usr/local/Cellar/php@7.2/7.2.34_1/bin/php -S 0.0.0.0:2048

在项目中引用

1、嵌入式

  1. 在入库文件中添加
  2. //重点是这句, 在项目中引入
  3. require '/home/xhgui-branch/external/header.php';

2、非嵌入式

  1. 修改 php.ini 文件,重启服务即可
  2. auto_prepend_file=/path/wwwroot/xhgui-branch/external/header.php

参考链接

http://91helpme.com/show-38.html
https://m.php.cn/topic/php7/455354.html
https://www.cnblogs.com/pheye/p/7717712.html
https://github.com/tideways/php-xhprof-extension( tideways 扩展 )
https://github.com/yiqiang3344/xhgui-branch(xhgui 可视化 )



评论 0

发表评论

Top