summaryrefslogtreecommitdiff
path: root/maintenance/getLagTimes.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/getLagTimes.php')
-rw-r--r--maintenance/getLagTimes.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/maintenance/getLagTimes.php b/maintenance/getLagTimes.php
index d3934592..0f750caf 100644
--- a/maintenance/getLagTimes.php
+++ b/maintenance/getLagTimes.php
@@ -1,14 +1,20 @@
<?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 );