Guest User

Untitled

a guest
May 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <?php
  2. if( $command == ":@replag" ) {
  3. $link = mysql_connect('localhost', 'root', '') or msg( mysql_error() );
  4.  
  5. $query = 'SHOW SLAVE STATUS';
  6.  
  7. $result = mysql_query($query) or msg( mysql_error() );
  8.  
  9. $line = mysql_fetch_array( $result, MYSQL_ASSOC );
  10.  
  11. msg( "Current Status: " . $line['Slave_IO_State'] );
  12. msg( "Replicating from: " . $line['Master_Host'] );
  13. msg( "Replication Lag (in seconds): " . $line['Seconds_Behind_Master'] );
  14.  
  15. mysql_free_result($result);
  16.  
  17. mysql_close($link);
  18. }
  19. ?>
Add Comment
Please, Sign In to add comment