溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Monyog的介紹是怎樣的

發(fā)布時(shí)間:2021-10-08 15:32:06 來源:億速云 閱讀:145 作者:柒染 欄目:MySQL數(shù)據(jù)庫

本篇文章為大家展示了Monyog的介紹是怎樣的,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

1、工具強(qiáng)大可以直接定位sql語句在做什么事情;

Monyog的介紹是怎樣的

Monyog的介紹是怎樣的

Monyog的介紹是怎樣的

Mysql日志

MONyog能夠讀取MySQL錯(cuò)誤日志嗎?

錯(cuò)誤日志中的新條目?

最近輸入的類型為[ERROR]

慢日志 - 啟用?

查詢的執(zhí)行時(shí)間被認(rèn)為很慢緩慢查詢次數(shù)日志查詢不使用索引?

一般日志 - 啟用?

日志警告?

日志目的地

等 等

Monyog的介紹是怎樣的

Monyog的介紹是怎樣的

Mysql 性能測試應(yīng)該監(jiān)控什么指標(biāo)

一,獲取MySQL用戶下的進(jìn)程總數(shù)

ps -ef | awk '{print $1}' | grep "mysql" | grep -v "grep" | wc-1

二,主機(jī)性能狀態(tài)

# uptime

[root@ ~]# uptime

 13:05:52 up 53 days, 52 min,  1 user,  load average: 0.00, 0.00, 0.00

三,CPU使用率

# top

# vmstat

四,磁盤IO量

# vmstat 或 # iostat

五,swap進(jìn)出量[內(nèi)存]

# free

六,數(shù)據(jù)庫性能狀態(tài)

(1)QPS(每秒Query量)

QPS = Questions(or Queries) / seconds

mysql > show /*50000 global */ status like 'Question';

(2)TPS(每秒事務(wù)量)

TPS = (Com_commit + Com_rollback) / seconds

mysql > show status like 'Com_commit';

mysql > show status like 'Com_rollback';

(3)key Buffer 命中率

key_buffer_read_hits = (1-key_reads / key_read_requests) * 100%

key_buffer_write_hits = (1-key_writes / key_write_requests) * 100%

mysql> show status like 'Key%';

(4)InnoDB Buffer命中率

innodb_buffer_read_hits = (1 - innodb_buffer_pool_reads / innodb_buffer_pool_read_requests) * 100%

mysql> show status like 'innodb_buffer_pool_read%';

(5)Query Cache命中率

Query_cache_hits = (Qcahce_hits / (Qcache_hits + Qcache_inserts )) * 100%;

mysql> show status like 'Qcache%';

(6)Table Cache狀態(tài)量

mysql> show status like 'open%';

(7)Thread Cache 命中率

Thread_cache_hits = (1 - Threads_created / connections ) * 100%

mysql> show status like 'Thread%';

mysql> show status like 'Connections';

(8)鎖定狀態(tài)

mysql> show status like '%lock%';

(9)復(fù)制延時(shí)量

mysql > show slave status

(10) Tmp Table 狀況(臨時(shí)表狀況)

mysql > show status like 'Create_tmp%';

(11) Binlog Cache 使用狀況

mysql > show status like 'Binlog_cache%';

(12) Innodb_log_waits 量

mysql > show status like 'innodb_log_waits';

上述內(nèi)容就是Monyog的介紹是怎樣的,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI