X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=StartProfiler.sample;h=6681b870cf33ded39bdb8fc2245e9153f56e1d1f;hb=5907e840ccad13f28438b413687342b65f3ab900;hp=4721a9dde3c6e93c9eb3dc7ed78fa904956b457c;hpb=eca35903a2390bf7eb503fa0ede6a76ce556dc55;p=lhc%2Fweb%2Fwiklou.git diff --git a/StartProfiler.sample b/StartProfiler.sample index 4721a9dde3..6681b870cf 100644 --- a/StartProfiler.sample +++ b/StartProfiler.sample @@ -6,7 +6,7 @@ * * For output, add: * $wgProfiler['output'] = array( 'text' ); - * 'text' can be one (or more) of 'text' 'udp' or 'db' + * 'text' can be one (or more) of 'text' 'udp' 'db' or 'dump' * 'db' requires creating the profiling table, see patch-profiling.sql * * The 'text' output will be added to the output page in a comment approriate @@ -18,6 +18,9 @@ * The 'db' output expects a database table that can be created by applying * maintenance/archives/patch-profiling.sql to your database. * + * The 'dump' output expects a $wgProfiler['outputDir'] telling it where to + * write dump files. The files produced are compatible with the XHProf gui. + * * For a rudimentary sampling profiler: * $wgProfiler['class'] = 'ProfilerXhprof'; * $wgProfiler['output'] = array( 'db' );