MySQL數據庫保護中監控所用到的經常使用敕令。本站提示廣大學習愛好者:(MySQL數據庫保護中監控所用到的經常使用敕令)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL數據庫保護中監控所用到的經常使用敕令正文
status = show status like ‘%%' [例:show status like 'Com_select']
variables = show variables like ‘%%' [例:show variables like 'query_cache_size']
1、MySQL查詢次數(status)
Com_select;Com_update;Com_insert;Com_delete;Com_change_db
2、查詢緩存空間年夜小:query_cache_size(variables)
查詢緩存最年夜查詢數據集年夜小:query_cache_limit(variables);
緩存中的查詢個數:Qcache_inserts(status);
查詢緩存射中率:(Qcache_hits/(Qcache_hits+Qcache_inserts))*100% (status)
3、索引緩存射中率
索引緩存空間年夜小:key_buffer_size (variables)
索引緩存射中率:(Key_reads/Key_read_requests)*100% (status)
4、並發銜接數
最年夜充許銜接數:max_connections(variables)
現實最年夜銜接數:max_used_connections(status)
以後銜接數:Threads_connected(status)
活潑銜接數:Threads_running(status)
緩存銜接數:Threads_cache(status)
5、流量統計(status)
Bytes_received ,Bytes_sent(status)
6、銜接次數
每秒銜接次數:Connections(status)
每秒現實創立銜接次數:Threads_created(status)
7、表鎖定統計
立刻釋放的表鎖數:Table_locks_immediate(status)
須要期待的表鎖數:Table_locks_waited(status)