MySQL常用统计和监控命令总结

1、查看库下的表

Show tables;

2、查看哪些库

Show  databases;

3、查看表的状态

use test

Show table status like 't1';

/*查看建表语句*/

show create table t1;

 /*查看表的索引*/

show index from t1;

/*查看引擎状态,里面会记录最近的死锁信息,当然,我们的死锁信息打印进了错误日志,死锁也可查日志*/

show engine innodb status; --还可以排查一些性能问题

/*查看DB线程信息*/

show processlist 或者show full processlist

 /*查看系统参数跟系统状态:*/

show global variables like "variable_name";

show global status like "variable_name";

/*看执行计划,再看mysql内部如何改写SQL*/

explain SQL;

show warnings;

/*快速造大量测试数据*/

insert into t select ... from

#查看库的总量

select count(1) frominformation_schema.SCHEMATA where schema_name not in ('mysql','information_schema','performance_schema','sys');

#查看表的总量

select count(*) frominformation_schema.tables where table_schema not in ('mysql','information_schema','performance_schema','sys');

#查看每个库下多少个表:

selectTABLE_SCHEMA,count(*) from information_schema.tables where table_schema not in ('mysql','information_schema','performance_schema','sys') group byTABLE_SCHEMA;

#查看100W+的表的个数:

select count(*) frominformation_schema.tables where table_schema not in ('mysql','information_schema','performance_schema','sys') and TABLE_ROWS>=1000000;

#查看10G+表的个数:

select count(*) frominformation_schema.tables where table_schema not in ('mysql','information_schema','performance_schema','sys') and DATA_FREE+DATA_LENGTH+INDEX_LENGTH>=10737418240;

#查看非innodb表个数:

select count(*) from information_schema.tables

where table_schemanot in ('mysql','information_schema','performance_schema','sys') and engine !='InnoDB';


4、表的碎片率排行top10

select table_schema,table_name,table_rows,data_length,index_length,data_free ,

data_free/(data_length+index_length+data_free)

as free_rate

from information_schema.tables

where table_schemanot in ('mysql','information_schema','performance_schema','sys')

order by free_ratedesc

limit 10;

表的碎片大小排行top10

select table_schema,table_name,table_rows,data_length,index_length,data_free

from information_schema.tables

where table_schemanot in ('mysql','information_schema','performance_schema','sys')

order by data_freedesc

limit 10;

表的行数top10,

select table_schema,table_name,table_rows,data_length,index_length,data_free

from information_schema.tables

where table_schemanot in ('mysql','information_schema','performance_schema','sys')

order by table_rowsdesc

limit 10;

表的体积top10

select table_schema,table_name,table_rows,data_length,index_length,data_free

from information_schema.tables

where table_schemanot in ('mysql','information_schema','performance_schema','sys')

order bydata_length+index_length+data_free desc

limit 10;

表的auto_increment top 10

select table_schema,table_name,table_rows,AUTO_INCREMENT

from information_schema.tables

where table_schemanot in ('mysql','information_schema','performance_schema','sys')

order byAUTO_INCREMENT  desc

limit 10;


未使用的索引情况:总数,按表统计top10:

select count(1) fromsys.schema_unused_indexes;

select object_schema,object_name,count(1) from sys.schema_unused_indexes group by object_schema,object_name order by count(1) desc limit 10;


mysql监控实施

一、对数据库服务可用性进行监控

1.1 通过测试账号ping命令返回的信息判断数据库可以通过网络连接

[root@localhost]# /usr/bin/mysqladmin -uroot -p123456 ping

mysqld is alive

1.2 确认数据库是否可读写

a.检查数据库的read_only参数是否为off

[root@localhost]# mysql -uroot -p123456 -P3306 -e "show global variables like 'read_only'" | grep read_only

read_only  OFF

b.执行简单的数据库查询,如:select @@version;

[root@localhost]# mysql -uroot -p123456 -P3306 -e "select @@version"  | grep Mysql

5.5.56-Mysql


二、对数据库性能进行监控

2.1 监控数据库连接数可用性

a.数据库最大连接数

[root@localhost]# mysql -uroot -p123456 -e "show variables like 'max_connections'"

+-----------------+-------+

| Variable_name  | Value |

+-----------------+-------+

| max_connections | 151  |

+-----------------+-------+

b.数据库当前打开的连接数

[root@localhost]# mysqladmin -uroot -p123456 extended-status | grep -w "Threads_connected"

| Threads_connected                        | 1          |

注:如何计算当前打开的连接数占用最大连接数的比例呢?

result=Threads_connected/max_connections,在做监控报警或可视化监控时能够很好的根据这个比例及时调整最大连接数。

2.2 数据库性能监控

a.QPS:每秒的查询数

QPS计算方法

Questions = SHOW GLOBAL STATUS LIKE 'Questions';

Uptime = SHOW GLOBAL STATUS LIKE 'Uptime';

QPS=Questions/Uptime

b.TPS:每秒的事物量(commit与rollback的之和)

TPS计算方法

Com_commit = SHOW GLOBAL STATUS LIKE 'Com_commit';

Com_rollback = SHOW GLOBAL STATUS LIKE 'Com_rollback';

Uptime = SHOW GLOBAL STATUS LIKE 'Uptime';

TPS=(Com_commit + Com_rollback)/Uptime

2.3 数据库并发请求数量

Mysql [(none)]>  SHOW GLOBAL STATUS LIKE 'Threads_running';

+-----------------+-------+

| Variable_name  | Value |

+-----------------+-------+

| Threads_running | 3    |

+-----------------+-------+

1 row in set (0.00 sec)

注:并发请求数量通常会远小于同一时间内连接到数据库的连接数数量。

三、对主从复制进行监控

3.1 主从复制链路状态的监控

3.2 主从复制延迟时间的监控

3.3 定期确认主从复制的数据是否一致

mysql知识点结构图
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,014评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,796评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,484评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,830评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,946评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,114评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,182评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,927评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,369评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,678评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,832评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,533评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,166评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,885评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,128评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,659评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,738评论 2 351

推荐阅读更多精彩内容

  • 注:示例均在为具有所有操作权限的root用户操作 1、用户操作相关类 1)创建用户 命令:create user'...
    刘晓佳rachel阅读 357评论 0 1
  • (摘自老徐公众号) -1- 安装 -2- 命令行入门 1. 有同学会问,有那么多mysql客户端工具,为何要掌握命...
    Root_123阅读 219评论 0 2
  • SQL的基本语法 对数据库 对表 对数据 存储引擎 数据类型 表的设计 1. SQL的基本语法 1.1 对数据库 ...
    Yanl__阅读 100评论 0 0
  • 修改用户密码 mysqladmin -uroot -p旧密码 新密码 显示数据库的命令 show database...
    荼蘼toome阅读 107评论 0 0
  • 收集整理,仅供个人参考学习。 查看连接数 show processlist; 也可以查information_sc...
    码头军阅读 376评论 0 1