MediaWiki REL1_31
lag.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
31class DatabaseLag extends Maintenance {
32 public function __construct() {
33 parent::__construct();
34 $this->addDescription( 'Shows database lag' );
35 $this->addOption( 'r', "Don't exit immediately, but show the lag every 5 seconds" );
36 }
37
38 public function execute() {
39 if ( $this->hasOption( 'r' ) ) {
40 $lb = wfGetLB();
41 echo 'time ';
42
43 $serverCount = $lb->getServerCount();
44 for ( $i = 1; $i < $serverCount; $i++ ) {
45 $hostname = $lb->getServerName( $i );
46 printf( "%-12s ", $hostname );
47 }
48 echo "\n";
49
50 while ( 1 ) {
51 $lags = $lb->getLagTimes();
52 unset( $lags[0] );
53 echo gmdate( 'H:i:s' ) . ' ';
54 foreach ( $lags as $lag ) {
55 printf( "%-12s ", $lag === false ? 'false' : $lag );
56 }
57 echo "\n";
58 sleep( 5 );
59 }
60 } else {
61 $lb = wfGetLB();
62 $lags = $lb->getLagTimes();
63 foreach ( $lags as $i => $lag ) {
64 $name = $lb->getServerName( $i );
65 $this->output( sprintf( "%-20s %s\n", $name, $lag === false ? 'false' : $lag ) );
66 }
67 }
68 }
69}
70
71$maintClass = DatabaseLag::class;
72require_once RUN_MAINTENANCE_IF_MAIN;
wfGetLB( $wiki=false)
Get a load balancer object.
Maintenance script to show database lag.
Definition lag.php:31
execute()
Do the actual work.
Definition lag.php:38
__construct()
Default constructor.
Definition lag.php:32
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
$maintClass
Definition lag.php:71
require_once RUN_MAINTENANCE_IF_MAIN