1 Star 0 Fork 0

Brook's/work-scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
show-mysql-qps.sh 916 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘少君 提交于 2018-05-02 14:32 . 提交脚本
#!/bin/bash
查看mysql QPS
# @Date : 2018-05-02
# @Author : Brook (liu785029095@gmail.com)
# @Link : http://ganlu.ren
# @Version : 1.0.0
mysqladmin -u$1 -p$2 extended-status -i1 |
awk 'BEGIN{local_switch=0;print "QPS Commit Rollback TPS Threads_con Threads_run \n------------------------------------------------------- "}
$2 ~ /Queries$/ {q=$4-lq;lq=$4;}
$2 ~ /Com_commit$/ {c=$4-lc;lc=$4;}
$2 ~ /Com_rollback$/ {r=$4-lr;lr=$4;}
$2 ~ /Threads_connected$/ {tc=$4;}
$2 ~ /Threads_running$/ {tr=$4;
if(local_switch==0){
local_switch=1;
count=0
} else {
if(count>10) {
count=0;
print "------------------------------------------------------- \nQPS Commit Rollback TPS Threads_con Threads_run \n------------------------------------------------------- ";
} else {
count+=1;
printf "%-6d %-8d %-7d %-8d %-10d %d \n", q,c,r,c+r,tc,tr;
}
}
}'
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/liushaojun/work-scripts.git
git@gitee.com:liushaojun/work-scripts.git
liushaojun
work-scripts
work-scripts
master

搜索帮助