Download the PHP package stevad/yii-xhprof without Composer
On this page you can find all versions of the php package stevad/yii-xhprof. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package yii-xhprof
yii-xhprof
Simple extension to use XHProf with Yii Framework 1.x.
Can work together with yii2-debug extension (bundled with debug panel for it).
By default profile starts on onBeginRequest
event and stops on onEndRequest
event. You can change this behavior and manually start and stop profiler.
For license information check the LICENSE file.
Tested on Yii Framework v1.1.16.
Installation
This extension is available at packagist.org and can be installed via composer by following command:
composer require --dev stevad/yii-xhprof
.
If you want to install this extension manually - copy sources to /protected/extensions
directory.
Minimal configuration to enable profiler:
If you want to add bundled debug panel to yii2-debug extension - update configuration next way:
Required XHProf files (library files - xhprof_lib
and UI - xhprof_html
) you can find in this GitHub repo.
Component configuration
Extension provide next configuration options for Yii component:
enabled
- enable/disable profiler component.reportPathAlias
- path alias to the directory to store JSON file with previous profiler runs. Default:application.runtime.xhprof
maxReportsCount
- number of profile reports to store. Default:25
.manualStart
- flag to manually start profiler from desired place. Default:false
.manualStop
- flag to manually stop profiler from desired place. Default:false
.forceStop
- flag to force stop profiler ononEndRequest
event ifmanualStop
is enabled and profiler is still running. Default:true
.triggerGetParam
- name of the GET param to manually trigger profiler to start. Default: no value, profiler runs on each request.showOverlay
- flag to display overlay on page with links to report and callgraph result for current profiler run (if allowed). Not required to betrue
if you are using bundled panel for yii2-debug extension. Default:true
.libPathAlias
- path alias to the directory withxhprof_lib
contents if it is placed somewhere in your Yii project. This option has more priority thanlibPath
.libPath
- direct filesystem path to the directory withxhprof_lib
contents.htmlReportBaseUrl
- URL path to the directory with XHProf UI contents (xhprof_html
). Default:/xhprof_html
(assuming you have this folder inside your document root).flagNoBuiltins
- enable/disable XHPROF_FLAGS_NO_BUILTINS flag for profiler (XHProf constants). Default:true
.flagCpu
- enable/disable XHPROF_FLAGS_CPU flag for profiler (XHProf constants). Default:false
.flagMemory
- enable/disable XHPROF_FLAGS_MEMORY flag for profiler (XHProf constants). Default:true
.blacklistedRoutes
- list of routes which profiler should ignore. Allowed wildcard*
which means 'any alphanumeric value and one of this:/
,.
,_
,-
. Default:array('debug*')
(to ignore requests to the debug extension pages).
XHProf class configuration
Component from extension use own developed simple wrapper for xhprof_enable
/ xhprof_disable
functions: XHProf class. This class provide functionality to start/stop profiling, save reports and get URLs for reports with XHProf library by Facebook.
Available configuration options (applicable for configure
method, see example below):
flagNoBuiltins
- enable/disable XHPROF_FLAGS_NO_BUILTINS flag for profiler (XHProf constants). Default:true
.flagCpu
- enable/disable XHPROF_FLAGS_CPU flag for profiler (XHProf constants). Default:false
.flagMemory
- enable/disable XHPROF_FLAGS_MEMORY flag for profiler (XHProf constants). Default:true
.libPath
- direct filesystem path to the directory withxhprof_lib
contents.htmlUrlPath
- URL path to the directory with XHProf UI contents (xhprof_html
).runId
- predefined value of identifier for current profiler run.runNamespace
- predefined value of namespace for current profiler run.
All options can be changed with setters (e.g. setFlagCpu(<value>)
). For more details see the source code of the class.
Manual profiling
If you enable manual start (manualStart
option) or stop (manualStop
option) you can place code to start/stop profiler in any place of your code and be able to see report and callgraph result.
To manual start you need to write some kind of next code:
To manual stop you need to write next code:
Note: If you use XHProf
class (with or without this extension) - all profile results can be found on XHProf UI page (it's by default by xhprof developers).
Author
Copyright (c) 2015 by Stevad.