MediaWiki REL1_40
|
Inherits Profiler.
Public Member Functions | |
__construct (array $params=[]) | |
close () | |
Close opened profiling sections. | |
getFunctionStats () | |
Get the aggregated inclusive profiling data for each method. | |
getOutput () | |
Returns a profiling output to be stored in debug file. | |
scopedProfileIn ( $section) | |
Mark the start of a custom profiling frame (e.g. | |
Public Member Functions inherited from Profiler | |
getAllowOutput () | |
Whether appending profiles is allowed. | |
getContentType () | |
Get the Content-Type for deciding how to format appended profile output. | |
getContext () | |
getProfileID () | |
getTransactionProfiler () | |
logData () | |
Log data to all the applicable backing stores. | |
logDataPageOutputOnly () | |
Log the data to the script/request output for all ProfilerOutput instances that do so. | |
scopedProfileOut (SectionProfileCallback &$section=null) | |
setAllowOutput () | |
Enable appending profiles to standard output. | |
setContext ( $context) | |
setProfileID ( $id) | |
Additional Inherited Members | |
Static Public Member Functions inherited from Profiler | |
static | init (array $profilerConf) |
static | instance () |
Singleton. | |
Protected Attributes inherited from Profiler | |
IContextSource | $context = null |
Current request context. | |
LoggerInterface | $logger |
array | $params = [] |
All of the params passed from $wgProfiler. | |
string false | $profileID = false |
Profiler ID for bucketing data. | |
TransactionProfiler | $trxProfiler |
ProfilerExcimer::__construct | ( | array | $params = [] | ) |
array | $params | Associative array of parameters:
|
Reimplemented from Profiler.
Definition at line 42 of file ProfilerExcimer.php.
References Profiler\$params.
ProfilerExcimer::close | ( | ) |
Close opened profiling sections.
Reimplemented from Profiler.
Definition at line 72 of file ProfilerExcimer.php.
Referenced by getFunctionStats(), and getOutput().
ProfilerExcimer::getFunctionStats | ( | ) |
Get the aggregated inclusive profiling data for each method.
The percent time for each time is based on the current "total" time used is based on all methods so far. This method can therefore be called several times in between several profiling calls without the delays in usage of the profiler skewing the results. A "-total" entry is always included in the results.
When a call chain involves a method invoked within itself, any entries for the cyclic invocation should be demarked with "@". This makes filtering them out easier and follows the xhprof style.
Reimplemented from Profiler.
Definition at line 77 of file ProfilerExcimer.php.
References close().
ProfilerExcimer::getOutput | ( | ) |
Returns a profiling output to be stored in debug file.
Reimplemented from Profiler.
Definition at line 132 of file ProfilerExcimer.php.
References close().
ProfilerExcimer::scopedProfileIn | ( | $section | ) |
Mark the start of a custom profiling frame (e.g.
DB queries). The frame ends when the result of this method falls out of scope.
string | $section |
Reimplemented from Profiler.
Definition at line 69 of file ProfilerExcimer.php.