xhprof

  1. 安装扩展

  2. 下载 https://pecl.php.net/get/xhprof-2.3.9.tgz

  3. 解压后进入extension目录安装

  4. xhprof_html为前端显示使用

  5. index.php和callgraph.php引入了xhprof_lib,需要注意一下路径

  6. 配置php.ini

extension=xhprof.so xhprof.output_dir=/var/www/html/xhprof_html/xhprof_runs/

  1. 配置nginx
server {
    listen 80; 
    server_name xhprof.localhost.com;
    root /var/www/html/xhprof_html/xhprof_html;
    index index.php;

    location ~ \.php$ {
        error_page 500 502 503 504 /static/error_pc_5xx.html;
        include fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME "$document_root$fastcgi_script_name";
        fastcgi_pass php;
    }   
}

查看图片报错:failed to execute cmd: " dot -Tsvg". stderr: `sh: dot: command not found ‘

需要安装graphviz才能查看图片

brew install graphviz 需要翻墙

使用源码安装

https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/7.0.4/graphviz-7.0.4.tar.gz

Published At