For all those instant GUI people out there, there is an easy way to watch the present status of your MySQL Slaves using the watch command.
$ watch -n 1 -d "mysql -uroot -pxxxx mysql -e 'SHOW SLAVE STATUS\G'"
The watch provides a view of a file or command, and shows interval updates to this output (-n seconds> option). You can also specific a granularity better then one second for example 0.5. -d also highlights the differences for you. So while you see the following output with your SHOW SLAVE STATUS, on a loaded system you will also see bin-log and relay-log changes, and perhaps Seconds_Behind_Master.
The question is, Why is Seconds_Behind_Master the last column in this display?
*************************** 1. row
***************************
Slave_IO_State: Waiting for master to send event
Master_Host: localhost
Master_User: repl
Master_Port: …