Una de las herramientas para hacer profiling en PHPes xhprof. Al momento de escribir este articulo estaba en su versión 0.9.4
Los pasos a seguir en su instalacion en mi caso en CEntOS son:
yum install graphviz wget https://pecl.php.net/get/xhprof-0.9.4.tgz tar xzf xhprof-0.9.4.tgz cd xhprof-0.9.4/extension/ phpize ./configure make make install
Luego editas el INI
vi /etc/php.d/xhprof.ini
Le estableces
[xhprof] extension=xhprof.so xhprof.output_dir="/tmp/xhprof"
Antes de reiniciar apache crea la carpeta para que guarde los datos del profiling
cd /tmp mkdir xhprof chown apache.apache xhprof/ ln -s /var/log/xhprof-0.9.4/xhprof_html xhprof systemctl restart httpd