mysql innodb的監(jiān)控(系統(tǒng)層,數(shù)據(jù)庫層)的案例代碼詳細說明
發(fā)表時間:2023-09-01 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這篇文章主要介紹了mysql innodb的監(jiān)控(系統(tǒng)層,數(shù)據(jù)庫層)的相關(guān)資料,需要的朋友可以參考下mysql innodb的監(jiān)控(系統(tǒng)層,數(shù)據(jù)庫層)關(guān)于MySQL 的監(jiān)控,mysql提供了數(shù)據(jù)采集的命令,比如show status命令或者讀取數(shù)據(jù)庫informat_schema的GLOBAL_S...
這篇文章主要介紹了
mysql innodb的監(jiān)控(系統(tǒng)層,數(shù)據(jù)庫層)的相關(guān)資料,需要的朋友可以參考下
mysql innodb的監(jiān)控(系統(tǒng)層,數(shù)據(jù)庫層)
關(guān)于MySQL 的監(jiān)控,mysql提供了數(shù)據(jù)采集的命令,比如show status命令或者讀取數(shù)據(jù)庫informat_schema的GLOBAL_STATUS對象;也可以用一些現(xiàn)成的監(jiān)控工具進行查詢,目前用的比較多的innotop、mysqlreport、mtop、mytop,還有淘寶perl語言研發(fā)的orzdba。
就監(jiān)控的指標(biāo)而言,有系統(tǒng)層面的,數(shù)據(jù)庫層面的。
1、系統(tǒng)層面包括系統(tǒng)的load、cpu、內(nèi)存是否有swap、磁盤IO如何、網(wǎng)絡(luò)。
vmstat -w 1
iostat -x -k 1
sar -n DEV 1
2、mysql數(shù)據(jù)庫層
show global status where Variable_name in('xxxx')或者show global status like 'xxx%'
采集的數(shù)據(jù)一般是當(dāng)前已經(jīng)采集到的總數(shù)量,如果要計算每秒的數(shù)量,可以這樣計算,以TPS為例
TPS=當(dāng)前的Comm_commit-前面采集的Comm_Commit/時間間隔
以下是主要的監(jiān)控指標(biāo):
1)Sql語句執(zhí)行次數(shù)QPS------(Com_select、Com_insert、Com_update、Com_delete)
2)事務(wù)TPS----(Com_commit、Com_rollback)
3)Row的狀態(tài)(每秒增加修改刪除的行數(shù))-----(Innodb_rows_inserted、Innodb_rows_updated、Innodb_rows_deleted、Innodb_rows_read)
4)Page 狀態(tài)(buffer pool中的總頁數(shù)、free、dirty、每秒flushed的page數(shù)量)----(Innodb_buffer_pool_pages_flushed<page flush的數(shù)量>、Innodb_buffer_pool_pages_data<總的量>、Innodb_buffer_pool_pages_free<free的頁數(shù)量>、Innodb_buffer_pool_pages_dirty<臟頁數(shù)量>)
5)查詢緩存Hit(query cache hit率)-----(inno_buffer_pool_read_requests<邏輯讀總次數(shù)>、Innodb_buffer_pool_reads<物理讀總次數(shù)>)
6)Data狀態(tài)(內(nèi)存buffer中數(shù)據(jù)每秒讀、寫次數(shù),每秒讀寫大小M)----(Innodb_data_reads<數(shù)據(jù)讀總次數(shù)>、Innodb_data_writes<數(shù)據(jù)寫的總次數(shù)>、Innodb_data_read<至此已經(jīng)讀的數(shù)據(jù)量>、Innodb_data_written<至此已經(jīng)寫的數(shù)據(jù)量>)
7)Log(log_fsync每秒日志sync到磁盤的次數(shù),log每秒寫的大小M)-----(Innodb_os_log_fsyncs<向日志文件寫的總次數(shù)>、Innodb_os_log_written<寫入日志文件的字節(jié)數(shù)>)
8)線程狀態(tài)(每秒創(chuàng)建的線程數(shù)量)------(Threads_running<激活狀態(tài)的線程數(shù)>、Threads_connected<當(dāng)前打開的連接數(shù)量>、Threads_created<新建線程的數(shù)量>、Threads_cached<線程的緩存值>)
9)每秒從客戶端接受或者發(fā)送的數(shù)據(jù)量M---(Bytes_received、Bytes_sent)
以上就是mysql innodb的監(jiān)控(系統(tǒng)層,數(shù)據(jù)庫層)的實例代碼詳解的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門到精通的SQL知識。