|
MediaWiki master
|
Convenience class for working with XHProf profiling data https://github.com/phacility/xhprof. More...
Public Member Functions | |
| __construct (array $data, array $config=[]) | |
| Configuration data can contain: | |
| getCallees ( $function) | |
| Get a list of all callees from a given function. | |
| getCallers ( $function) | |
| Get a list of all callers of a given function. | |
| getCompleteMetrics () | |
| Get the inclusive and exclusive metrics for each function call. | |
| getCriticalPath ( $metric='wt') | |
| Find the critical path for the given metric. | |
| getInclusiveMetrics () | |
| Get the inclusive metrics for each function call. | |
| getRawData () | |
| Get raw data collected by xhprof. | |
Static Public Member Functions | |
| static | makeSortFunction ( $key, $sub) |
| Make a closure to use as a sort function. | |
| static | splitKey ( $key) |
| Convert an xhprof data key into an array of ['parent', 'child'] function names. | |
Protected Member Functions | |
| pruneData ( $data) | |
| Remove data for functions that are not included in the 'include' configuration array. | |
Protected Attributes | |
| array[] | $complete |
| Per-function inclusive and exclusive data. | |
| array | $config |
| array[] | $hieraData |
| Hierarchical profiling data returned by xhprof. | |
| array[][] | $inclusive |
| Per-function inclusive data. | |
Convenience class for working with XHProf profiling data https://github.com/phacility/xhprof.
XHProf can be installed via PECL.
Definition at line 18 of file XhprofData.php.
| Wikimedia\XhprofData::__construct | ( | array | $data, |
| array | $config = [] ) |
Configuration data can contain:
| array | $data | Xhprof profiling data, as returned by xhprof_disable() |
| array | $config |
Definition at line 51 of file XhprofData.php.
| Wikimedia\XhprofData::getCallees | ( | $function | ) |
Get a list of all callees from a given function.
| string | $function | Function name |
Definition at line 307 of file XhprofData.php.
| Wikimedia\XhprofData::getCallers | ( | $function | ) |
Get a list of all callers of a given function.
| string | $function | Function name |
Definition at line 291 of file XhprofData.php.
| Wikimedia\XhprofData::getCompleteMetrics | ( | ) |
Get the inclusive and exclusive metrics for each function call.
In addition to the normal data contained in the inclusive metrics, the metrics have an additional 'exclusive' measurement which is the total minus the totals of all child function calls.
Definition at line 234 of file XhprofData.php.
| Wikimedia\XhprofData::getCriticalPath | ( | $metric = 'wt' | ) |
Find the critical path for the given metric.
| string | $metric | Metric to find critical path for |
Definition at line 322 of file XhprofData.php.
References $path.
| Wikimedia\XhprofData::getInclusiveMetrics | ( | ) |
Get the inclusive metrics for each function call.
Inclusive metrics for given function include the metrics for all functions that were called from that function during the measurement period.
See getRawData() for a description of the metric that are returned for each function call. The values for the wt, cpu, mu and pmu metrics are arrays with these values:
Definition at line 147 of file XhprofData.php.
| Wikimedia\XhprofData::getRawData | ( | ) |
Get raw data collected by xhprof.
Each key in the returned array is an edge label for the call graph in the form "caller==>callee". There is once special case edge labeled simply "main()" which represents the global scope entry point of the application.
XHProf will collect different data depending on the flags that are used:
Definition at line 86 of file XhprofData.php.
|
static |
Make a closure to use as a sort function.
The resulting function will sort by descending numeric values (largest value first).
| string | $key | Data key to sort on |
| string | $sub | Sub key to sort array values on |
Definition at line 357 of file XhprofData.php.
|
protected |
Remove data for functions that are not included in the 'include' configuration array.
| array[] | $data | Raw xhprof data |
Definition at line 111 of file XhprofData.php.
|
static |
Convert an xhprof data key into an array of ['parent', 'child'] function names.
The resulting array is left padded with nulls, so a key with no parent (eg 'main()') will return [null, 'function'].
| string | $key |
Definition at line 100 of file XhprofData.php.
|
protected |
Per-function inclusive and exclusive data.
Definition at line 41 of file XhprofData.php.
|
protected |
Definition at line 23 of file XhprofData.php.
|
protected |
Hierarchical profiling data returned by xhprof.
Definition at line 29 of file XhprofData.php.
|
protected |
Per-function inclusive data.
Definition at line 35 of file XhprofData.php.