https://blog.****.net/hanyetuya/article/details/51423649
1、MySQL服务器配置信息
show variables;
2、MySQL服务器运行的各种状态值
show global status;
3、慢查询
show variables like ‘%slow%‘;-- 设置的慢查询
show global status like ‘%slow%‘;-- 实际统计的慢查询
4、最大连接数
show variables like ‘max_connections‘;-- 设置的最大连接数
show global status like ‘max_used_connections‘;-- 实际使用的最大连接数