MediaWiki REL1_33
ProfilerSectionOnly.php
Go to the documentation of this file.
1<?php
35 protected $sprofiler;
36
37 public function __construct( array $params = [] ) {
38 parent::__construct( $params );
39 $this->sprofiler = new SectionProfiler();
40 }
41
42 public function scopedProfileIn( $section ) {
43 return $this->sprofiler->scopedProfileIn( $section );
44 }
45
46 public function close() {
47 }
48
49 public function getFunctionStats() {
50 return $this->sprofiler->getFunctionStats();
51 }
52
53 public function getOutput() {
54 return $this->getFunctionReport();
55 }
56
73 protected function getFunctionReport() {
74 $data = $this->getFunctionStats();
75 usort( $data, function ( $a, $b ) {
76 return $b['real'] <=> $a['real']; // descending
77 } );
78
79 $width = 140;
80 $nameWidth = $width - 65;
81 $format = "%-{$nameWidth}s %6d %9d %9d %9d %9d %7.3f%% %9d";
82 $out = [];
83 $out[] = sprintf( "%-{$nameWidth}s %6s %9s %9s %9s %9s %7s %9s",
84 'Name', 'Calls', 'Total', 'Min', 'Each', 'Max', '%', 'Mem'
85 );
86 foreach ( $data as $stats ) {
87 $out[] = sprintf( $format,
88 $stats['name'],
89 $stats['calls'],
90 $stats['real'] * 1000,
91 $stats['min_real'] * 1000,
92 $stats['real'] / $stats['calls'] * 1000,
93 $stats['max_real'] * 1000,
94 $stats['%real'],
95 $stats['memory']
96 );
97 }
98 return implode( "\n", $out );
99 }
100}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Profiler that only tracks explicit profiling sections.
getFunctionReport()
Get a report of profiled functions sorted by inclusive wall clock time in descending order.
getFunctionStats()
Get the aggregated inclusive profiling data for each method.
close()
Close opened profiling sections.
getOutput()
Returns a profiling output to be stored in debug file.
__construct(array $params=[])
scopedProfileIn( $section)
Mark the start of a custom profiling frame (e.g.
Profiler base class that defines the interface and some trivial functionality.
Definition Profiler.php:33
array $params
All of the params passed from $wgProfiler.
Definition Profiler.php:39
Custom PHP profiler for parser/DB type section names that xhprof/xdebug can't handle.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:855
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
Definition hooks.txt:3070
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))