nagios监控mysql(check_mysql)及内存使用率(check_mem)

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介:

一、监控本地(localhost)内存

1、上传监控脚本 check_mem 到/usr/local/nagios/libexec

1
2
# chown -R nagios.nagios check_mem
# chmod +x check_mem

2、修改commands配置

1
2
3
4
5
# vim /usr/local/nagios/etc/objects/commands.cfg 
define  command {
         command_name        check_mem
         command_line        $USER1$ /check_mem  -w $ARG1$ -c $ARG2$
         }

3、修改localhost.cfg

1
2
3
4
5
6
7
# vim /usr/local/nagios/etc/objects/localhost.cfg 
define service{
         use                              local -service
         host_name                       localhost
         service_description             check_mem
         check_command                   check_mem!20!10
         }

4、重启nagios服务

1
# service nagios restart

5、check_mem 脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash  
USAGE= "`basename $0` [-w|--warning]<percent free> [-c|--critical]<percent free>"
THRESHOLD_USAGE= "WARNING threshold must be greater than CRITICAL: `basename $0` $*"
calc= /tmp/memcalc
percent_free= /tmp/mempercent
critical= ""
warning= ""
STATE_OK=0
STATE_WARNING=1
STATE_CRITICAL=2
STATE_UNKNOWN=3
# print usage  
if  [[ $ # -lt 4 ]]
then
         echo  ""  
         echo  "Wrong Syntax: `basename $0` $*"  
         echo  ""  
         echo  "Usage: $USAGE"  
         echo  ""  
         exit  0
fi
# read input  
while  [[ $ # -gt 0 ]]  
   do
         case  "$1"  in
                -w|--warning)
                shift
                warning=$1
         ;;
                -c|--critical)
                shift
                critical=$1
         ;;
         esac
         shift
   done
 
# verify input  
if  [[ $warning - eq  $critical || $warning -lt $critical ]]
then
         echo  ""  
         echo  "$THRESHOLD_USAGE"  
         echo  ""  
         echo  "Usage: $USAGE"  
         echo  ""  
         exit  0
fi
# Total memory available  
total=` free  -m |  head  -2 | tail  -1 | gawk  '{print $2}' `
# Total memory used  
used=` free  -m |  head  -2 | tail  -1 | gawk  '{print $3}' `
# Calc total minus used  
free =` free  -m |  head  -2 | tail  -1 | gawk  '{print $2-$3}' `
# normal values  
#echo "$total"MB total  
#echo "$used"MB used  
#echo "$free"MB free  
# make it into % percent free = ((free mem / total mem) * 100)  
echo  "5"  > $calc  # decimal accuracy  
echo  "k"  >> $calc  # commit  
echo  "100"  >> $calc  # multiply  
echo  "$free"  >> $calc  # division integer  
echo  "$total"  >> $calc  # division integer  
echo  "/"  >> $calc  # division sign  
echo  "*"  >> $calc  # multiplication sign  
echo  "p"  >> $calc  # print  
percent=` /usr/bin/dc  $calc| /bin/sed  's/^\./0./' | /usr/bin/tr  "."  " " | /usr/bin/gawk  { 'print $1' }`
#percent1=`/usr/bin/dc $calc`  
#echo "$percent1"  
if  [[  "$percent"  - le   $critical ]]
         then
                 echo  "CRITICAL - $free MB ($percent%) Free Memory"  
                 exit  2
fi
if  [[  "$percent"  - le   $warning ]]
         then
                 echo  "WARNING - $free MB ($percent%) Free Memory"  
                 exit  1
fi
if  [[  "$percent"  -gt  $warning ]]
         then
                 echo  "OK - $free MB ($percent%) Free Memory"  
                 exit  0
fi

二、监控客户端内存使用情况

1、上传监控脚本 check_mem 到/usr/local/nagios/libexec

1
2
# chown -R nagios.nagios check_mem
# chmod +x check_mem

2、修改nrpe.cfg

1
2
3
4
5
6
7
8
9
# vim /usr/local/nagios/etc/nrpe.cfg 
command [check_users]= /usr/local/nagios/libexec/check_users  -w 3 -c 5
command [check_load]= /usr/local/nagios/libexec/check_load  -w 15,10,5 -c 30,25,20
command [check_xvda]= /usr/local/nagios/libexec/check_disk  -w 10% -c 5% -p  /dev/xvda
command [check_zombie_procs]= /usr/local/nagios/libexec/check_procs  -w 5 -c 10 -s Z
command [check_total_procs]= /usr/local/nagios/libexec/check_procs  -w 150 -c 200 
command [check_xvdb2]= /usr/local/nagios/libexec/check_disk  -w 10% -c 5% -p  /dev/xvdb2
command [check_swap]= /usr/local/nagios/libexec/check_swap  -w 20% -c 10%
command [check_mem]= /usr/bin/sudo  /usr/local/nagios/libexec/check_mem  -w 20 -c 10    #增加此行

3、在nagios服务器端增加监控服务

1
2
3
4
5
6
7
# vim /usr/local/nagios/etc/servers/192.168.200.111.cfg
define service{
         use                             generic-service
         host_name                       192.168.200.111
         service_description             check_mem
         check_command                   check_nrpe!check_mem
         }

三、排错

1、NRPE: Unable to read output

(1)为nagios用户增加sudo权限

1
2
# visudo
nagios  ALL=(ALL) NOPASSWD: /usr/local/nagios/libexec/check_mem

(2)注释掉一下行,表示不需要控制终端

1
2
# visudo
#Defaults    requiretty



四、nagios监控mysql

1、check_mysql

    nagios监控mysql使用的是 check_mysql 这个插件,需要在nagios服务器上先安装mysql-devel,然后再重新安装nagios-plugin,这样才会出现check_mysql。否则即使copy了一份,也照样用不了。

2、编译或重新编译 nagios-plugin

1
2
3
4
#yum -y install mysql-devl
#cd nagios-plugins-2.0.3
#./configure --with-nagios-user=nagios --with-nagios-group=nagios
#make && make install

3、查看 check_mysql

1
# ls /usr/local/nagios/libexec/check_mysql

4、建立专用数据库

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# mysql -uroot -p
mysql> create database nagios_monitor;
 
mysql> grant  select  on nagios_monitor.* to nagios@ '%'  identified by  '123qaz!@#' ;
Query OK, 0 rows affected (0.00 sec)
 
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
 
mysql>  select  User,Password,Host from mysql.user;
+--------+-------------------------------------------+--------------+
| User   | Password                                  | Host         |
+--------+-------------------------------------------+--------------+
| root   | *B9627CB37815863D1E98D0C41E0233A772355E2B | localhost    |
| root   | *B9627CB37815863D1E98D0C41E0233A772355E2B | 127.0.0.1    |
| root   | *B9627CB37815863D1E98D0C41E0233A772355E2B | ::1          |
| cacti  | *BC3E1F14C7940F9C8BCDB05A38385754BB55CD64 | localhost    |
| nagios | *BC3E1F14C7940F9C8BCDB05A38385754BB55CD64 | %            |
+--------+-------------------------------------------+--------------+
8 rows  in  set  (0.00 sec)

5、check 一下

1
2
3
4
5
6
7
8
# /usr/local/nagios/libexec/check_mysql -H 192.168.200.105 -unagios -dnagios_monitor -p 123qaz!@#
# 报了一个错
/usr/local/nagios/libexec/check_mysql : error  while  loading shared libraries: libmysqlclient.so.18: cannot  open  shared object  file : No such  file  or directory
# 解决:
ln  -sv  /usr/local/mysql/lib/libmysqlclient .so.18  /usr/lib64/libmysqlclient .so.18
# 再重新测试
# /usr/local/nagios/libexec/check_mysql -H 192.168.200.111 -unagios -dnagios_monitor -p 123qaz!@#
Uptime: 13991  Threads: 5  Questions: 1242101  Slow queries: 0  Opens: 159  Flush tables: 1  Open tables: 60  Queries per second avg: 88.778|Connections=315c;;; Open_files=85;;; Open_tables=60;;; Qcache_free_memory=16285768;;; Qcache_hits=1210926c;;; Qcache_inserts=16654c;;; Qcache_lowmem_prunes=0c;;; Qcache_not_cached=2c;;; Qcache_queries_in_cache=283;;; Queries=1242101c;;; Questions=1242101c;;; Table_locks_waited=2c;;; Threads_connected=5;;; Threads_running=1;;; Uptime=13991c;;;

6、监控localhost

(1)修改 commands.cfg

1
2
3
4
5
# vim /usr/local/nagios/etc/objects/commands.cfg
define  command {
         command_name check_mysql
         command_line $USER1$ /check_mysql  -H $HOSTADDRESS$ -unagios -dnagios_monitor -p123qaz!@ #
}

(2)修改 localhost.cfg

1
2
3
4
5
6
7
# vim /usr/local/nagios/etc/objects/localhost.cfg
define service{
         use                              local -service
         host_name                       localhost
         service_description             check_mysql
         check_command                   check_mysql
         }

(3)重启 nagios

1
# service nagios restart

7、监控客户端

(1)check 一下

1
# /usr/local/nagios/libexec/check_mysql -H 192.168.200.111 -unagios -dnagios_monitor -p123qaz!@#

(2)客户端修改 nrpe.cfg

1
2
# vim /usr/local/nagios/etc/nrpe.cfg 
command [check_mysql]= /usr/local/nagios/libexec/check_mysql  -H 192.168.200.111 -unagios -dnagios_monitor -p123qaz!@ #

(3)重启 nrpe

1
2
# killall nrpe
# /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d

(4)服务端定义服务

1
2
3
4
5
6
7
# vim /usr/local/nagios/etc/servers/192.168.200.111.cfg 
define service{
         use                             generic-service
         host_name                       192.168.200.111
         service_description             check_mysql
         check_command                   check_nrpe!check_mysql
         }

(5)重启 nagios 服务

1
# service nagios restart









本文转自 nmshuishui 51CTO博客,原文链接:http://blog.51cto.com/nmshuishui/1553445,如需转载请自行联系原作者
相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
17天前
|
Web App开发 监控 JavaScript
监控和分析 JavaScript 内存使用情况
【10月更文挑战第30天】通过使用上述的浏览器开发者工具、性能分析工具和内存泄漏检测工具,可以有效地监控和分析JavaScript内存使用情况,及时发现和解决内存泄漏、过度内存消耗等问题,从而提高JavaScript应用程序的性能和稳定性。在实际开发中,可以根据具体的需求和场景选择合适的工具和方法来进行内存监控和分析。
|
2月前
|
缓存 Java 测试技术
谷粒商城笔记+踩坑(11)——性能压测和调优,JMeter压力测试+jvisualvm监控性能+资源动静分离+修改堆内存
使用JMeter对项目各个接口进行压力测试,并对前端进行动静分离优化,优化三级分类查询接口的性能
谷粒商城笔记+踩坑(11)——性能压测和调优,JMeter压力测试+jvisualvm监控性能+资源动静分离+修改堆内存
|
1月前
|
缓存 监控 关系型数据库
如何查看MySQL使用的内存
如何查看MySQL使用的内存
114 1
|
1月前
|
存储 缓存 监控
深入了解MySQL内存管理:如何查看MySQL使用的内存
深入了解MySQL内存管理:如何查看MySQL使用的内存
318 1
|
27天前
|
监控 数据可视化 Java
如何使用JDK自带的监控工具JConsole来监控线程池的内存使用情况?
如何使用JDK自带的监控工具JConsole来监控线程池的内存使用情况?
|
1月前
|
SQL 监控 关系型数据库
如何查看MySQL使用的内存
综合运用上述方法,您可以全方位地监控和管理MySQL的内存使用。从简单查看配置到深入分析实时内存占用,每种方法都有其适用场景和优势。定期检查和调整MySQL的内存配置,对于维持数据库性能和稳定性至关重要。
263 0
|
2月前
|
监控 Ubuntu API
Python脚本监控Ubuntu系统进程内存的实现方式
通过这种方法,我们可以很容易地监控Ubuntu系统中进程的内存使用情况,对于性能分析和资源管理具有很大的帮助。这只是 `psutil`库功能的冰山一角,`psutil`还能够提供更多关于系统和进程的详细信息,强烈推荐进一步探索这个强大的库。
44 1
|
2月前
|
Arthas 监控 Java
监控线程池的内存使用情况以预防内存泄漏
监控线程池的内存使用情况以预防内存泄漏
|
2月前
|
监控 数据可视化 Java
使用JDK自带的监控工具JConsole来监控线程池的内存使用情况
使用JDK自带的监控工具JConsole来监控线程池的内存使用情况
|
3月前
|
存储 编译器 C语言
【C语言篇】数据在内存中的存储(超详细)
浮点数就采⽤下⾯的规则表⽰,即指数E的真实值加上127(或1023),再将有效数字M去掉整数部分的1。
379 0
下一篇
无影云桌面