Manual:$wgProfiler
このページに加筆してください。 |
プロファイリング: $wgProfiler | |
---|---|
Settings related to profiling. |
|
導入されたバージョン: | 1.8.0 |
除去されたバージョン: | 使用中 |
許容される値: | (連想配列) |
既定値: | [] |
その他の設定: アルファベット順 | 機能順 |
詳細
This setting is used to configure profiling of your MediaWiki installation.
利用できるキーは Manual:プロファイリング を参照してください。 They include:
'class'
- E.g.
ProfilerXhprof
provides an Xhprof-backed profiler. There is alsoProfilerExcimer
which works with Excimer . 'output'
- Define one or multiple output methods. For multiple output methods at the same time, use an array of class names, one for each output type you want the profiler to generate. For example use the "ProfilerOutputText" profiler. 既定であなたが利用できる出力クラスは以下の通りです: ProfilerOutputDump, ProfilerOutputStats, ProfilerOutputText.
- ProfilerOutputStats outputs profiling data as StatsD metrics.
It expects that you have set the $wgStatsdServer configuration variable to the host (or host:port) of your statsd server.
- ProfilerOutputText will output profiling data in the page body as a comment.
You can make the profiling data in HTML render as part of the page content by setting the 'visible' configuration flag: $wgProfiler['visible'] = true;
- ProfilerOutputDump expects a $wgProfiler['outputDir'] telling it where to write dump files.
The files produced are compatible with the XHProf gui.
'visible'
true
またはfalse
。 Iftrue
, output is displayed in HTML rendering (and not only in a comment).'sampling'
- 正の整数。 Profile every nth request.
For performance, the profiler is always disabled for CLI scripts as they could be long running and the data would accumulate. Use the '--profiler' parameter of maintenance scripts to override this.
例
For a rudimentary debug profiler:
$wgProfiler= [
'class' => ProfilerXhprof::class,
'output' => ProfilerOutputText::class,
];