經常使用的:緩存
--查看查詢時間超過long_query_time秒的查詢的個數。性能
show status like 'slow_queries';優化
--查看建立時間超過slow_launch_time秒的線程數。線程
show status like 'slow_launch_threads';it
--查看不能當即得到的表的鎖的次數。若是該值較高,而且有性能問題,你應首先優化查詢,而後拆分表或使用複製。io
show status like 'table_locks_waited';table
--查看當即得到的表的鎖的次數。thread
show status like 'table_locks_immediate';date
--查看激活的(非睡眠狀態)線程數。 select
show status like 'threads_running';
--查看建立用來處理鏈接的線程數。若是Threads_created較大,你可能要增長thread_cache_size值。
show status like 'threads_created';
--查看當前打開的鏈接的數量。
show status like 'threads_connected';
--查看線程緩存內的線程的數量。
show status like 'threads_cached';
--查看試圖鏈接到MySQL(無論是否鏈接成功)的鏈接數
show status like 'connections';
--查看delete語句的執行數
show [global] status like 'com_delete';
--查看update語句的執行數
show [global] status like 'com_update';
--查看insert語句的執行數
show [global] status like 'com_insert';
--查看select語句的執行數
show [global] status like 'com_select';
--查看MySQL本次啓動後的運行時間(單位:秒)
show status like 'uptime';