Note incorrect docs in DefaultSettings.php
[lhc/web/wiklou.git] / maintenance / getLagTimes.php
index f2c06f6..0f750ca 100644 (file)
@@ -1,23 +1,29 @@
 <?php
+/**
+ * @file
+ * @ingroup Maintenance
+ */
 
 require 'commandLine.inc';
 
-if( empty( $wgDBservers ) ) {
+$lb = wfGetLB();
+
+if( $lb->getServerCount() == 1 ) {
        echo "This script dumps replication lag times, but you don't seem to have\n";
        echo "a multi-host db server configuration.\n";
 } else {
-       $lags = $wgLoadBalancer->getLagTimes();
+       $lags = $lb->getLagTimes();
        foreach( $lags as $n => $lag ) {
-               $host = $wgDBservers[$n]["host"];
+               $host = $lb->getServerName( $n );
                if( IP::isValid( $host ) ) {
                        $ip = $host;
                        $host = gethostbyaddr( $host );
                } else {
                        $ip = gethostbyname( $host );
                }
-               $stars = str_repeat( '*', intval( $lag ) );
+               $starLen = min( intval( $lag ), 40 );
+               $stars = str_repeat( '*', $starLen );
                printf( "%10s %20s %3d %s\n", $ip, $host, $lag, $stars );
        }
 }
 
-?>
\ No newline at end of file