MySQL Troubleshooting
From ben.goodacre.name/tech
Contents |
Get current processes and queries
mysql> show processlist;
Get number of queries currently running
mysql> show status like 'Threads_connected';
Get number of queries since the server was started
mysql> show status like 'Threads_created';