|
MediaWiki master
|
Profiler base class that defines the interface and some shared functionality. More...
Inherited by MediaWiki\Profiler\ProfilerExcimer, MediaWiki\Profiler\ProfilerSectionOnly, MediaWiki\Profiler\ProfilerStub, and MediaWiki\Profiler\ProfilerXhprof.

Public Member Functions | |
| __construct (array $params) | |
| close () | |
| Close opened profiling sections. | |
| getAllowOutput () | |
| Whether appending profiles is allowed. | |
| getContentType () | |
| Get the Content-Type for deciding how to format appended profile output. | |
| getFunctionStats () | |
| Get the aggregated inclusive profiling data for each method. | |
| getOutput () | |
| Returns a profiling output to be stored in debug file. | |
| 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. | |
| scopedProfileIn ( $section) | |
| Mark the start of a custom profiling frame (e.g. | |
| scopedProfileOut (?SectionProfileCallback &$section=null) | |
| setAllowOutput () | |
| Enable appending profiles to standard output. | |
| setProfileID ( $id) | |
Static Public Member Functions | |
| static | init (array $profilerConf) |
| static | instance () |
Protected Attributes | |
| LoggerInterface | $logger |
| array | $params = [] |
| All of the params passed from $wgProfiler. | |
| string false | $profileID = false |
| Profiler ID for bucketing data. | |
| TransactionProfiler | $trxProfiler |
Profiler base class that defines the interface and some shared functionality.
Definition at line 25 of file Profiler.php.
| MediaWiki\Profiler\Profiler::__construct | ( | array | $params | ) |
| array | $params | See $wgProfiler. |
Reimplemented in MediaWiki\Profiler\ProfilerExcimer, MediaWiki\Profiler\ProfilerSectionOnly, and MediaWiki\Profiler\ProfilerXhprof.
Definition at line 43 of file Profiler.php.
References MediaWiki\Profiler\Profiler\$params.
|
abstract |
Close opened profiling sections.
Reimplemented in MediaWiki\Profiler\ProfilerExcimer, MediaWiki\Profiler\ProfilerSectionOnly, MediaWiki\Profiler\ProfilerStub, and MediaWiki\Profiler\ProfilerXhprof.
| MediaWiki\Profiler\Profiler::getAllowOutput | ( | ) |
Whether appending profiles is allowed.
Definition at line 272 of file Profiler.php.
References wfDeprecated().
| MediaWiki\Profiler\Profiler::getContentType | ( | ) |
Get the Content-Type for deciding how to format appended profile output.
Disabled by default. Enable via setAllowOutput().
Definition at line 244 of file Profiler.php.
|
abstract |
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 in MediaWiki\Profiler\ProfilerExcimer, MediaWiki\Profiler\ProfilerSectionOnly, MediaWiki\Profiler\ProfilerStub, and MediaWiki\Profiler\ProfilerXhprof.
|
abstract |
Returns a profiling output to be stored in debug file.
Reimplemented in MediaWiki\Profiler\ProfilerExcimer, MediaWiki\Profiler\ProfilerSectionOnly, MediaWiki\Profiler\ProfilerStub, and MediaWiki\Profiler\ProfilerXhprof.
| MediaWiki\Profiler\Profiler::getProfileID | ( | ) |
Definition at line 114 of file Profiler.php.
| MediaWiki\Profiler\Profiler::getTransactionProfiler | ( | ) |
|
staticfinal |
| array | $profilerConf | Value from $wgProfiler |
Definition at line 56 of file Profiler.php.
References MediaWiki\Profiler\Profiler\$params.
|
staticfinal |
Definition at line 93 of file Profiler.php.
| MediaWiki\Profiler\Profiler::logData | ( | ) |
Log data to all the applicable backing stores.
This logs the profiling data to the backing store for each configured ProfilerOutput instance. It also logs any request data for the TransactionProfiler instance.
Reimplemented in MediaWiki\Profiler\ProfilerStub.
Definition at line 186 of file Profiler.php.
| MediaWiki\Profiler\Profiler::logDataPageOutputOnly | ( | ) |
Log the data to the script/request output for all ProfilerOutput instances that do so.
Reimplemented in MediaWiki\Profiler\ProfilerStub.
Definition at line 215 of file Profiler.php.
|
abstract |
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 in MediaWiki\Profiler\ProfilerExcimer, MediaWiki\Profiler\ProfilerSectionOnly, MediaWiki\Profiler\ProfilerStub, and MediaWiki\Profiler\ProfilerXhprof.
| MediaWiki\Profiler\Profiler::scopedProfileOut | ( | ?SectionProfileCallback & | $section = null | ) |
| SectionProfileCallback | null | &$section |
Definition at line 135 of file Profiler.php.
| MediaWiki\Profiler\Profiler::setAllowOutput | ( | ) |
Enable appending profiles to standard output.
Definition at line 260 of file Profiler.php.
| MediaWiki\Profiler\Profiler::setProfileID | ( | $id | ) |
| string | $id |
Definition at line 106 of file Profiler.php.
References wfDeprecated().
|
protected |
Definition at line 33 of file Profiler.php.
|
protected |
All of the params passed from $wgProfiler.
Definition at line 29 of file Profiler.php.
Referenced by MediaWiki\Profiler\Profiler\__construct(), MediaWiki\Profiler\ProfilerExcimer\__construct(), MediaWiki\Profiler\ProfilerSectionOnly\__construct(), MediaWiki\Profiler\ProfilerXhprof\__construct(), and MediaWiki\Profiler\Profiler\init().
|
protected |
Profiler ID for bucketing data.
Definition at line 27 of file Profiler.php.
|
protected |
Definition at line 31 of file Profiler.php.