XHProf is a hierarchical profiler for PHP. It reports function-level call counts and inclusive and exclusive metrics such as wall (elapsed) time, CPU time and memory usage. A function's profile can be broken down by callers or callees. The raw data collection component is implemented in C as a PHP Zend extension called xhprof. XHProf has a simple HTML based user interface (written in PHP). The browser based UI for viewing profiler results makes it easy to view results or to share results with peers. A callgraph image view is also supported.
This bundle helps you to easily use the XHProf bundle with the web debug toolbar in Symfony 2. With Symfony 2.3 and newer, it can also profile console commands.
Make sure you have XHProf installed. If you are on a mac you can easily install it via Macports sudo port install php5-xhprof
Add the following dependencies to your projects composer.json file:
"require": {
"jns/xhprof-bundle": "1.0.*@dev",
"lox/xhprof": "dev-master@dev"
}
Of course, you have to install xhprof library in your server.
At this moment, ext-xhprof
is not required because your application could be deployed to a server without xhprof.
src/Jns/Bundle
directory of your project(so that it lives at src/Jns/Bundle/XhprofBundle
). You can do this by adding
the bundle as a submodule, cloning it, or simply downloading the source.
$ git submodule add https://github.com/jonaswouters/XhprofBundle.git src/Jns/Bundle/XhprofBundle
If this is the first Jns bundle in your Symfony 2 project, you'll
need to add the Jns
namespace to your autoloader. This file is usually located at app/autoload.php
.
$loader->registerNamespaces(array(
'Jns' => __DIR__.'/../src'
// ...
));
To initialize the bundle, you'll need to add it in your kernel. This
file is usually located at app/AppKernel.php
. Loading it only in your dev environment is recommended.
public function registerBundles()
{
// ...
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
// ...
$bundles[] = new Jns\Bundle\XhprofBundle\JnsXhprofBundle();
}
}
The Bundle comes preconfigured for the macports php5-xhprof default installation,
with the xhprof web located at http://xhprof.localhost.
To change these settings for your environment you can override the defaults by
defining the following settings in your config. The config is usually located at app/config/config_dev.yml
.
jns_xhprof:
location_web: http://xhprof.localhost
enabled: true
Do not forget to set enabled
to true
, or the profiler will never be activated.
XHGui is a GUI for the XHProf PHP extension, using a database backend, and pretty graphs to make it easy to use and interpret. The XHProf bundle supports using XHGui to display the results. To use, install XHGui, and add the following two settings to the configuration, usually located at app/config/config.yml
:
jns_xhprof:
entity_manager: <name_of_entity_manager> (defaults to default)
entity_class: Acme\FooBundle\Entity\XhprofDetail
enable_xhgui: true
Create your class Acme\FooBundle\Entity\XhprofDetail
:
<?php
namespace Acme\FooBundle\Entity;
use Jns\Bundle\XhprofBundle\Entity\XhprofDetail as BaseXhprofDetail;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="details")
*/
class XhprofDetail extends BaseXhprofDetail
{
/**
* @var integer $id
*
* @ORM\Column(name="id", type="string", unique=true, length=17, nullable=false)
* @ORM\Id
*/
protected $id;
}
If you only have one entity manager defined, you don't need to set it here. This setting is for the case where you are using a seperate profiling database for XHGui (highly recommended).
You can specify a sample size for profiling. This is useful to collect random samples of real requests in production environments. If you have plenty of requests, you really don't want to profile all of them.
The sample size is set as a probability for profiling, so for example, if you set the sample size to 2, then on average, every second request will be profiled. Of course, in production you want to set it to a much higher value. Defaults to 1, so that every request will be profiled.
jns_xhprof:
sample_size: 2
You can skip all built-in (internal) functions.
jns_xhprof:
skip_builtin_functions: true
You can specify a request_query_argument
parameter to have XHProf only activate
on requests that have this argument. This can be useful to profile a production
system without impacting other requests too much.
jns_xhprof:
request_query_argument: "__xhprof"
It's possible to configure exclude_patterns
parameter in configuration. XHProf would be enabled only for requests which will match these patterns.
jns_xhprof:
exclude_patterns: ['/css/', '/js/']
The most common case is the prod
mode. Symfony Profiler is disabled by default in this mode.
It is possible to configure XHProf Bundle to send custom Response header with XHProf web UI URL for the current token.
Header name could be configured with response_header
parameter in bundle configuration.
Empty value disables this header completely. Default header name is X-Xhprof-Url
.
You can set the profiling of console commands to on
, off
or option
.
on
: all commands are profiled according to sample_size
;off
: no commands are profiled (but web requests might be profiled);option
: commands get an additional option to trigger profiling.jns_xhprof:
command: "off"
When you set command
to option
, you can specify an option name that will
trigger a profiler run on a command. That option will automatically be available
on all commands.
jns_xhprof:
command: "option"
command_option_name: xhprof
Now you can profile a command with
$ app/console acme:my:command --xhprof
When using the on
setting, you might want to filter what commands get profiled.
If the name filter matches, the profiler will never trigger.
jns_xhprof:
command_exclude_patterns: ['acme:', ':debug']