#!/bin/bash
# -------------------------------------------------------------------------------
# FileName: check_mysql.sh
# Revision: 1.0
# Date: 2015/06/09
# Description:
# -------------------------------------------------------------------------------
# License: GPL

# 用户名
MYSQL_USER='zabbix'

# 密码
MYSQL_PWD='zabbix'

# 主机地址/IP
MYSQL_HOST='localhost'

# 端口
MYSQL_PORT='3306'

# 数据连接
MYSQL_CONN="/usr/local/mysql/bin/mysqladmin -u${MYSQL_USER} -p${MYSQL_PWD} -h${MYSQL_HOST} -P${MYSQL_PORT}"

# 参数是否正确
if [ $# -ne "1" ];then
echo "arg error!"
fi

# 获取数据
case $1 in
Uptime)
result=`${MYSQL_CONN} status|cut -f2 -d":"|cut -f1 -d"T"`
echo $result
;;
Com_update)
result=`${MYSQL_CONN} extended-status |grep -w "Com_update"|cut -d"|" -f3`
echo $result
;;
Slow_queries)
result=`${MYSQL_CONN} status |cut -f5 -d":"|cut -f1 -d"O"`
echo $result
;;
Com_select)
result=`${MYSQL_CONN} extended-status |grep -w "Com_select"|cut -d"|" -f3`
echo $result
;;
Com_rollback)
result=`${MYSQL_CONN} extended-status |grep -w "Com_rollback"|cut -d"|" -f3`
echo $result
;;
Questions)
result=`${MYSQL_CONN} status|cut -f4 -d":"|cut -f1 -d"S"`
echo $result
;;
Com_insert)
result=`${MYSQL_CONN} extended-status |grep -w "Com_insert"|cut -d"|" -f3`
echo $result
;;
Com_delete)
result=`${MYSQL_CONN} extended-status |grep -w "Com_delete"|cut -d"|" -f3`
echo $result
;;
Com_commit)
result=`${MYSQL_CONN} extended-status |grep -w "Com_commit"|cut -d"|" -f3`
echo $result
;;
Bytes_sent)
result=`${MYSQL_CONN} extended-status |grep -w "Bytes_sent" |cut -d"|" -f3`
echo $result
;;
Bytes_received)
result=`${MYSQL_CONN} extended-status |grep -w "Bytes_received" |cut -d"|" -f3`
echo $result
;;
Com_begin)
result=`${MYSQL_CONN} extended-status |grep -w "Com_begin"|cut -d"|" -f3`
echo $result
;;

*)
echo "Usage:$0(Uptime|Com_update|Slow_queries|Com_select|Com_rollback|Questions|Com_insert|Com_delete|Com_commit|Bytes_s
ent|Bytes_received|Com_begin)"
;;
esac

最新文章

  1. Java基础-输入输出-2.编写IoDemo.java的Java应用程序,程序完成的功能是:首先读取text.txt文件内容,再通过键盘输入文件的名称为iodemo.txt,把text.txt的内容存入iodemo.txt
  2. C# 异常处理 <-> 连接远程数据库遇到的问题
  3. Java hashCode() 和 equals()的若干问题
  4. json最简单的跨域
  5. 安装rabbitmq以及python调用rabbitmq--暂欠
  6. hdu 3478(判断奇环)
  7. Thread线程初探
  8. LeeCode-Same Tree
  9. ERROR: unable to bind listening socket for address ’127
  10. 笔记:MyBatis 其他特性
  11. scala读取配置文件
  12. 使用字面量,比new更加有效
  13. show出相应单据列表
  14. zw版【转发·台湾nvp系列Delphi例程】HALCON Roberts2
  15. docker1-安装和使用
  16. Executor
  17. 测试canvas绘制旋转文字的性能
  18. HTML5新增元素,标签总结
  19. swiper.js的使用
  20. Visual studio 2015/2017 opencv3.4 kineck2.0 osg realsense配置

热门文章

  1. luogu 2577 [ZJOI2005]午餐 贪心+dp
  2. [Luogu] 计数
  3. 【csp模拟赛5】加减法--宽搜维护联通快
  4. assert 笔记
  5. 【CUDA 基础】6.5 流回调
  6. AGC032F One Third
  7. 关于go module
  8. linux下编译安装ACE-6.4.2(adpative communication environment)
  9. selenium 常见操作事件2
  10. php上传文件夹