Skip to content

This bundle adds a page to Symfony debug toolbar, with stats, collected by Tideways XHProf Extension

Notifications You must be signed in to change notification settings

zim32/symfony-xhprof-bundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

Install tideways_xhprof extension

See https://github.com/tideways/php-xhprof-extension for instructions

Install this bundle

composer require zim32/xhprof-profiler-bundle

Open your .env.local file and add

ZIM_XHPROF_ENABLE=1

This will activate profiler.

Set ZIM_XHPROF_ENABLE=0, or remove entirely, to deactivate profiler

Navigate to debug toolbar and click on XHProf menu item. Profit

Picture

Conditional profiling

If you need to enable profiling based on some condition, you can use special variable ZIM_XHPROF_CONDITION

The value of this variable is passed to Symfony ExpressionLanguage component, with one variable called ctx. This expression must evaluate to bool value (true - enable profiling, false - disable)

CTX is initialized as follows:

$ctx->get = $_GET;
$ctx->post = $_POST;
$ctx->server = $_SERVER;
$ctx->cookie = $_COOKIE;

So for example to enable profiler only for your user session, you can use

ZIM_XHPROF_CONDITION='key_exists("PHPSESSID", ctx.cookie) && ctx.cookie["PHPSESSID"] === "bd465k5q41n8jsdd8iu99mmchk"'

About

This bundle adds a page to Symfony debug toolbar, with stats, collected by Tideways XHProf Extension

Resources

Stars

Watchers

Forks

Packages

No packages published