|
概述:公司的生产机器一共有12台,2台LVS(主备)、2台nginx、2台tomcat、1台后台服务器(nginx_tomcat)、3台mysql(主+备+异地灾备)、1台图片服务器、2台memcached.
可以看出网站的架构就是基于高可用的原理的,每个层面都做了主备、系统的PV不高,对于并发布,高性能没有那么苛求,对于系统安全、稳定有较高要求,前期已经对系统做了各种日志分析,WAF配置,漏洞扫面等等,现在还需要对系统进行监控,考虑再三还是决定使用Nagios来做,
PS:之前的同事用的Zabbix,表示我这十几台机器真是伤不起。。。
照着网上的材料来做,有的地方实在是坑。。把自己整理出来的结果发出来,给大家做个参考
一、安装Nagios
1、安装依赖包
1
2
3
| #rpm -q gcc glibc glibc-common gd gd-devel xinetd openssl-devel
#yum install -y gcc glibc glibc-common gd gd-devel xinetd openssl-devel
#yum - y install httpd php mysql-devel php-mysql
|
2、添加用户和组
#groupadd nagcmd
#useradd -G nagcmd nagios
#passwd nagios
#usermod -a -G nagcmd apache
3、编译安装
1
2
3
4
5
6
7
8
| #tar nagios-3.4.3.tar.gz
#cd nagios
#./configure --sysconfdir=/etc/nagios --with-command-group=nagcmd --enable-event-broker
#make all
#make install
#make install-init
#make install-commandmode
#make install-config
|
在http的配置文件目录【conf.d】中创建nagios的web程序配置文件
创建一个登陆nagios web程序的用户,用这个账号登陆nagios(这是彻底的弱口令,配置完建议把密码修改掉)
1
2
| #htpasswd -c /etc/nagios/htpasswd.users nagiosadmin
#密码:nagios
|
以上配置过程需重新启动httpd:
报错信息:Could not reliably determine the server's fully qualified
vi /etc/httpd/conf/httpd.conf
加入:ServerName localhost:80
4、安装nagios-plugins
#tar zxvf nagios-plugins-1.4.13.tar.gz
#cd nagios-plugins-1.4.13
注意:组不使用nagcmd
1
2
3
| #./configure --with-nagios-user=nagios --with-nagios-group=nagios
#make all
#make install
|
5.配置并启动nagios
(1)加入开机启动--
1
| <span style="font-size:14px;"># chkconfig --add nagios<br># chkconfig --level 35 nagios on<br># chkconfig --list nagios</span>
|
(2)检查其配置文件的语法是否正确
1
| #/usr/local/nagios/bin/nagios -v /etc/nagios/nagios.cfg
|
(3)启动nagios
1
| #service nagios restart
|
(4)配置selinux【会阻止CGI脚本】
1
| <span style="font-size:14px;">#getenforce<br>#setenfore 0<br>#vi /etc/sysconfig/selinux ->SELINUX=disabled</span>
|
二、Nagios配置
这里只做简要说明,后续会贴出具体的配置
cgi.cfg
控制CGI访问的配置文件,如何新加了cgi配置文件,需要在这里增加
nagios.cfg
Nagios 主配置文件
resource.cfg
变量定义文件,又称为资源文件,在些文件中定义变量,以便由其他配置文件引用,如$USER1$,好吧,其实就就是全局变量
objects
objects 是一个目录,在此目录下有很多配置文件模板,用于定义Nagios 对象
objects/commands.cfg
命令定义配置文件,其中定义的命令可以被其他配置文件引用
objects/contacts.cfg
定义联系人和联系人组的配置文件
objects/localhost.cfg
定义监控本地主机的配置文件
objects/printer.cfg
定义监控打印机的一个配置文件模板,默认没有启用此文件
objects/switch.cfg
定义监控路由器的一个配置文件模板,默认没有启用此文件
objects/templates.cfg
定义主机和服务的一个模板配置文件,可以在其他配置文件中引用
objects/timeperiods.cfg
定义Nagios 监控时间段的配置文件
objects/windows.cfg
监控Windows 主机的一个配置文件模板,默认没有启用此文件
三、NRPE安装【客户端】
说明:NRPE(nagios remore plugin execute)远程插件执行器,用于在远端服务区上运行监测命令的守护进程,它用于让nagios监控端基于安装的方式出发远端主机上的检测命令,并将检测结果输出至监控端。而其执行的开销远低于基于ssh的检测方式,而且检测过程中并不需要远程主机上的系统账号等信息。必须在客户端安装nrpe的nagios的plugin
1、安装plugin
1
2
3
4
5
6
7
8
| #useradd -s /sbin/nologin nagios
#yum grouplist
#yum -y groupinstall "Development Tools" "Development Libraries"
#tar zxvf nagios-plugins-1.4.13.tar.gz
#cd nagios-plugins-1.4.13
#./configure --with-nagios-user=nagios --with-nagios-group=nagios
#make all
#make install
|
2、安装nrpe
1
2
3
4
5
6
7
| #tar zxvf nrpe-2.15.tar.gz
#cd nrpe-2.15
#./configure --with-nrpe-user=nagios -with-nrpe-group=nagios --with-nagios-user=nagios --with-nagios-group=nagios --enable-command-args --enable-ssl
#make all
#make install-plugin
#make install-daemon
#make install-daemon-config
|
3、配置NRPE
1
2
3
4
5
6
7
8
9
10
11
| # vi /usr/local/nagios/etc/nrpe.cfg
log_facility=daemon
pid_file=/var/run/nrpe.pid
server_port=5666
#修改为本机的IP
server_address=192.168.1.101
nrpe_user=nagios
nrpe_group=nagios
#修改为Nagios服务端的IP
allowed_hosts=192.168.1.100
command_timeout=60
|
4、启动nrpe
# /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
为了方便NRPE的启动,可以将如下内容定义为/etc/init.d/nrped脚本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| #!/bin/bash
NRPE=/usr/local/nagios/bin/nrpe
NRPECONF=/usr/local/nagios/etc/nrpe.cfg
case "$1" in
start)
echo -n "Staring NRPE daemon...."
$NRPE -c $NRPECONF -d
echo "done.."
;;
stop)
echo -n "Stopping NRPE daemon...."
pkill -u nagios nrpe
echo "done.."
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 start|stop|restart"
esac
exit 0
|
5、配置示例
vi /usr/local/nagios/etc/nrpe.cfg
1
2
3
4
5
6
7
8
9
| command[check_users]=/usr/local/nagios/libexec/check_users -w 10 -c 20
command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20
command[check_sd1]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -p /dev/sda6
command[check_sd2]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -p /dev/sda3
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 200 -c 400
command[check_cpu]=/usr/local/nagios/libexec/check_cpu.sh -w 50 -c 80
command[check_mem]=/usr/local/nagios/libexec/check_mem.sh -w 50 -c 80
command[check_swap]=/usr/local/nagios/libexec/check_swap -w 20% -c 10%
|
四、NRPE服务端
1、安装NRPE
#tar zxvf nrpe-2.15.tar.gz
#cd nrpe-2.15
#./configure --with-nrpe-user=nagios -with-nrpe-group=nagios --with-nagios-user=nagios --with-nagios-group=nagios --enable-command-args --enable-ssl --with-mysql
#make all
#make install-plugin
2、定义如何监控远程主机及服务
通过NPRE监控远程Linux主机要使用check_nrpe插件进行,其语法格式如下:
check_nrpe -H <host> [-n] [-u] [-p <port>] [-t <timeout>] [-c <command>] [-a <arglist...>]
示例:
1
2
3
4
5
| define command
{
command_name check_swap_nrpe
command_line $USER1$check_nrpe -H "$HOSTADDRESS$" -c "check_swap"
}
|
如果还希望在监控远程LINUX主机时还能向其传递参数,则可以使用类似如下方式进行:
1
2
3
4
5
6
| #cd /etc/nagios/objects/
#vi commands.cfg \\增加以下内容
define command{
command_name check_nrpe
command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
}
|
贴出一个新增加的配置:
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
| define host{
use linux-server
host_name linhost
alias My Linux Host
address 192.168.1.101
}
define service{
use generic-service
host_name linhost
service_description CHECK USERS
check_command check_nrpe!check_users
}
define service{
use generic-service
host_name linhost
service_description Load
check_command check_nrpe!check_load
}
define service{
use generic-service
host_name linhost
service_description SDA1
check_command check_nrpe!check_sd1
}
define service{
use generic-service
host_name linhost
service_description SDA2
check_command check_nrpe!check_sd2
}
define service{
use generic-service
host_name linhost
service_description Zombie
check_command check_nrpe!check_zombie_procs
}
define service{
use generic-service
host_name linhost
service_description total procs
check_command check_nrpe!check_total_procs
}
|
五、增加监控脚本
比如CPU、内存、LVS等、需要自己写脚本来做、其实so easy,只要注意2个点就OK,控制输入(参数等)、格式化输出。只要输出格式符合Nagios的格式识别方式就行
1、CPU监控
vi check_cpu.sh
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
| #!/bin/sh
# Filename: check_cpu.sh
procinfo=`which procinfo 2>/dev/null`
sar=`which sar 2>/dev/null`
function help {
echo -e "\n\tThis plugin shows the % of used CPU, using either procinfo or sar (whichever is available)\n\n\t$0:\n\t\t-c <integer>\tIf the % of used CPU is above <integer>, returns CRITICAL state\n\t\t-w <integer>\tIf the % of used CPU is below CRITICAL and above <integer>, returns WARNING state\n"
exit -1
}
# Getting parameters:
while getopts "w:c:h" OPT; do
case $OPT in
"w") warning=$OPTARG;;
"c") critical=$OPTARG;;
"h") help;;
esac
done
# Checking parameters:
( [ "$warning" == "" ] || [ "$critical" == "" ] ) && echo "ERROR: You must specify warning and critical levels" && help
[[ "$warning" -ge "$critical" ]] && echo "ERROR: critical level must be highter than warning level" && help
# Assuring that the needed tools exist:
( ( [ -f $procinfo ] && command="procinfo") || [ -f $sar ] ) || \
( echo "ERROR: You must have either procinfo or sar installer in order to run this plugin" && exit -1 )
# Doing the actual check:
( [ "$command" == "procinfo" ] && idle=`$procinfo | grep idle | cut -d% -f1 | awk '{print $NF}' | cut -d. -f1`) || \
idle=`$sar | tail -1 | awk '{print $8}' | cut -d. -f1`
used=`expr 100 - $idle`
# Comparing the result and setting the correct level:
if [[ $used -ge $critical ]]; then
msg="CRITICAL"
status=2
else if [[ $used -ge $warning ]]; then
msg="WARNING"
status=1
else
msg="OK"
status=0
fi
fi
# Printing the results:
echo "$msg - CPU used=$used% idle=$idle% | 'CPU Usage'=$used%;$warning;$critical;"
# Bye!
exit $status
|
修改用户数组和加权限,以下操作都一样
1
2
3
| #chown nagios.nagios check_cpu.sh
#chmod +x check_cpu.sh
#./check_cpu.sh -w 60 -c 80
|
【问题】由于使用sar命令监控系统资源使用,有可能存在系统没有安装sar的情况
解决方案:
#yum -y install sysstat
初次执行的时候会存在问题 需要建立一个存放记录的文件【当天日期】sar -o 16
在被监控端也需要配置【略】
【注意】需要加入crontab 每天生成记录cpu命令的文件
#crontab -e 记得检查crontab任务是否启动
1 0 * * * /usr/lib64/sa/sa1
2、内存监控
vi check_mem.sh
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
| #!/bin/bash
#DESC: OS mem check
#Author:James
function help {
echo -e "\n\tThis plugin shows the % of used MEM, using free (whichever is available)\n\n\t$0:\n\t\t-c <integer>\tIf the % of used MEM is above <integer>, returns CRITICAL state\n\t\t-w <integer>\tIf the % of used MEM is below CRITICAL and above <integer>, returns WARNING state\n"
exit -1
}
while getopts "w:c:h" OPT; do
case $OPT in
"w") warning=$OPTARG;;
"c") critical=$OPTARG;;
"h") help;;
esac
done
set `free|head -2|tail -1`
MEMTOTAL=$2
MEMUSED=$3
MEMFREE=$4
MEMBUFFERS=$6
MEMCACHED=$7
REALMEMUSED=`echo $MEMUSED - $MEMBUFFERS - $MEMCACHED | bc`
USEPCT=`echo "scale=3; $REALMEMUSED / $MEMTOTAL * 100" |bc -l`
REALMEMUSEDmb=`echo "($REALMEMUSED)/1024" | bc`
MEMTOTALMB=`echo "($MEMTOTAL)/1024"|bc`
if [ `echo "$USEPCT > $critical" |bc` == 1 ];then
echo "MEM CRITICAL - Memory usage = ${USEPCT}%,MEMTOTAL=${MEMTOTALMB}MB,RealUsed=${REALMEMUSEDmb}MB |Used=${USEPCT}%;$warning;$critical"
exit 2
elif [ `echo "$USEPCT > $warning" |bc` == 1 ];then
echo "MEM WARNING - Memory usage = ${USEPCT}%,MEMTOTAL=${MEMTOTALMB}MB,RealUsed=${REALMEMUSEDmb}MB |Used=${USEPCT}%;$warning;$critical"
exit 1
elif [ `echo "$USEPCT < $warning" |bc` == 1 ];then
echo "MEM OK - Memory usage = ${USEPCT}%,MEMTOTAL=${MEMTOTALMB}MB,RealUsed=${REALMEMUSEDmb}MB|Used=${USEPCT}%;$warning;$critical"
exit 0
else
echo "MEM ERROR - Unable to determine memory usage"
exit 3
fi
echo "Unable to determine memory usage."
exit 3
|
3、LVS监控
vi check_lvs.sh
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
| #!/bin/bash
USAGE_Method="$(basename $0)[-h|--hostname] <Free ip or hostname> [-w|--warning] <Free integer> [-c|--critical] <Free integer>"
USAGE_Value="warning value must be small than critical value: `basename $0` $*"
STATE_OK=0
STATE_WARNING=1
STATE_CRITICAL=2
STATE_UNKNOWN=3
if [ $# -lt 4 ];then
echo "Usage:$USAGE_Method"
fi
while [ $# -gt 0 ];
do
case "$1" in
-w|--warning)
shift
warning=$1
;;
-c|--critical)
shift
critical=$1
;;
esac
shift
done
if [[ $warning == $critical || $warning -gt $critical ]];then
#echo $warning
#echo $critical
echo "$USAGE_Value"
echo "Usage: $USAGE_Method"
exit 0
fi
ACT_COUNT=0
Inactive_count=0
stat1=`sudo ipvsadm | grep http | grep Route|wc -l`
if [ $stat1 -ne 0 ];then
for NUM in `sudo ipvsadm | grep http | grep Route | awk '{print $5}'`
do
ACT_COUNT=$(($ACT_COUNT+ $NUM))
done
for NUM in `sudo ipvsadm | grep http | grep Route | awk '{print $6}'`
do
Inactive_count=$(($Inactive_count+ $NUM))
done
else
echo " stat1:$stat1, lvs critical,lvs is down now."
exit 3
fi
|
4、MYSQL监控
在需要监控的mysql数据库上建一个专门给Nagios使用的库
1
2
3
| mysql>create database nagdb default CHARSET=utf8;
mysql> grant select on nagdb.* to 'nagios'@'192.168.1.100';
mysql> update mysql.user set Password = PASSWORD('nagios') where user='nagios';
|
#/usr/local/nagios/libexec/check_mysql -H 192.168.1.101 -u nagios -d nagdb -p nagios -w 10 -c 30
5、memcached监控
使用插件,用perl语言写的,需要安装多个依赖包,比较坑爹。。我也不容易啊
(1)安装模块
1
| #yum -y install perl-Carp-Clan perl-Cache-Memcached perl-Nagios-Plugin
|
--如果不能安装
--如果perl-Nagios-Plugin无法安装
(2)插件安装
下载Nagios-Plugins-Memcached-0.02.tar.gz后安装【依赖包较多,请注意查看.pm文件的存放位置】
1
2
3
4
| #tar xzvf Nagios-Plugins-Memcached-0.02.tar.gz
#cd Nagios-Plugins-Memcached-0.02
#yum -y install perl-CPAN
# perl Makefile.PL
|
--执行后会出现一些提示让你选择,按照自己想法选或者一路回车都能通过
--这时他会下载一些运行时需要的东西
--默认会把check_memcached文件放到/usr/bin/check_memcached
--没关系 把他拷贝到nagios的libexec下
1
2
| #cp /usr/local/bin/check_memcached /usr/local/nagios/libexec/
#chown nagios.nagios check_memcached
|
在commands.cfg里面加上这么几条(这里我没有把check_memcached装在memcached服务器上,而是通过Nagios的check_memcached直接去访问memcached服务器的11211端口,当然你也可以把他装在memcached服务器上利用check_nrpe来取他的值)
define command {
command_name check_memcached_11211
command_line $USER1$/check_memcached -H 192.168.1.101:11211 --size-warning 80 --size-critical 90
}
上面这个是来监控memcached的内存使用比例
define command {
command_name memcached_response_11211
command_line /usr/local/bin/check_memcached -H 192.168.1.101 -w 300 -c 500
}
这个是用来监控memcached是否还有应答
define command {
command_name check_memcached_hit
command_line /usr/local/bin/check_memcached -H 192.168.1.101 --hit-warning 10 --hit-critical 5
}
./check_memcached -H 192.168.108.96 -w 300 -c 500
六、报警配置
1、sendmail
首先要确保sendmail 相关组件的完整安装,我们可以使用如下的命令来完成sendmail 的安装:
# yum install -y sendmail*
然后重新启动sendmail服务:
# service sendmail restart
【问题】有可能遇到sendmail发送邮件慢的情况,这时候需要修改hosts
1
2
3
4
| vi /etc/hosts
#jd.com 设置是为了发件人的邮件设置为:nagios.jd.com server1是主机名
127.0.0.1 server1 jd.com localhost server1
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
然后发送测试邮件,验证sendmail的可用性:
# echo "Hello World" | mail david.tang@bsmart.cn
PS:最好把nagios.jd.com添加到邮箱的白名单里,如果你用了免费的邮箱的话,有过滤的,你懂的。。。
2、修改配置
修改/usr/local/nagios/etc/objects/contacts.cfg 联系人的邮箱
七、pnp4nagios画图
好吧,我偷懒了、没有用Cacti来画图,直接使用了nagios的插件。。效果还可以啦
1、rrdtool安装
#yum -y install cairo-devel libxml2-devel pango-devel pango libpng-devel freetype freetype-devel libart_lgpl-devel
#wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.7.tar.gz
#tar -zxvf rrdtool-1.4.7.tar.gz
#./configure --prefix=/usr/local/rrdtool
#make && make install
#export PATH="/usr/local/rrdtool/bin:$PATH" >>/etc/profile
2、安装 pnp4nagios-0.6.6.tar.gz
nagios $> tar zxvf pnp4nagios-0.6.6.tar.gz
nagios $> cd pnp4nagios-0.6.6
nagios $> ./configure --with-nagios-user=nagios --with-nagios-group=nagios
nagios $> make all
nagios $> make install
nagios $> make install-webconf
nagios $> make install-config
nagios $> make install-init
3、创建配置文件
nagios $> cd /usr/local/pnp4nagios/etc
nagios $> mv misccommands.cfg-sample misccommands.cfg
nagios $> mv nagios.cfg-sample nagios.cfg
nagios $> mv npcd.cfg-sample npcd.cfg
nagios $> mv process_perfdata.cfg-sample process_perfdata.cfg
nagios $> mv rra.cfg-sample rra.cfg
nagios $> cd pages
nagios $> mv web_traffic.cfg-sample web_traffic.cfg
nagios $> cd ../check_commands
nagios $> mv check_all_local_disks.cfg-sample check_all_local_disks.cfg
nagios $> mv check_nrpe.cfg-sample check_nrpe.cfg
nagios $> mv check_nwstat.cfg-sample check_nwstat.cfg
4、重启服务
nagios $> /etc/init.d/npcd restart
5、修改 nagios 的配置文件
nagios $> cd /etc/nagios/etc
nagios $> vim nagios.cfg
#打开注视项:
process_performance_data=1
host_perfdata_command=process-host-perfdata
service_perfdata_command=process-service-perfdata
6、修改 commands.cfg
nagios $> cd /etc/nagioss/objects
nagios $> vim commands.cfg
##添加
# 'process-host-perfdata' command definition
define command{
command_name process-host-perfdata
command_line /usr/local/pnp4nagios/libexec/process_perfdata.pl
}
# 'process-service-perfdata' command definition
define command{
command_name process-service-perfdata
command_line /usr/local/pnp4nagios/libexec/process_perfdata.pl
}
7、添加小太阳模版,镶嵌在nagios页面上
define host{
name host-pnp
action_url /pnp4nagios/graph?host=$HOSTNAME$&srv=_HOST_
register 0
}
define service{
name srv-pnp
action_url /pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$
register 0
}
8、修改hosts.cfg和services.cfg
nagios $> cd /etc/nagios/objects
#修改hosts.cfg
nagios $> vim hosts.cfg
define host{
use linux-server,host-pnp
host_name eric.com
alias eric.com
address 192.168.1.100
}
# 修改 services.cfg
define service{
use local-service,srv-pnp
host_name eric.com
service_description PING
check_command check_ping!100.0,20%!500.0,60%
}
9、重启 nagios 服务
1
2
3
4
| #vi /etc/httpd/conf.d/pnp4nagios.conf -->修改以下内容
AuthUserFile /usr/local/nagios/etc/htpasswd.users
nagios $> service nagios restart
nagios $> service httpd restart
|
10、注意:
1、要正常出图,需要删除
/usr/local/pnp4nagios/share/install.php
/usr/local/pnp4nagios/var/perfdata/
2、重新配置出图,需删除
/usr/local/pnp4nagios/var/perfdata/下的rrd和xml文件
3、如果Nagios的配置文件是放在etc下的,需要修改一下配置,要不然认证会不通过
1
2
| vi pnp4nagios.conf
AuthUserFile /etc/nagios/htpasswd.users
|
八、画图补充
1、原理说明
PNP出图的数据来自脚本在系统打印出来的字符串,而Nagios源码提供的check_procs脚本系统输出字符串不符合数据格式规范
(没有包含性能数据),所以就无法出图了
--nagios性能数据格式
例:cpu_user:OK-0% cpu_system:OK-0% cpu_idle:WARNING-99>70% | cpu_user=0%;120;90; cpu_system=0%;100;70; cpu_idle=99%;100;70;
其中性能数据为|后面的斜体部分,格式如下:
‘label’=value[UOM];[warn];[crit];[min];[max]
注意事项:
1.空格分割标签/值对 例如cpu_user=0%;100;90; cpu_system=0%;100;70; cpu_idle=99%;100;70;
2.label可以包含任何字符
3.单引号可省略,如果label中使用空格、等号和单引号,则需要需要单引号把label括起来。例如’a ‘b’ = c’=0%;100;90;
4.标签可以为任意长度,但最好少于19个字符并且唯一,(RRD有相关方面的限制),并且需要注意NRPE的返回值的限制(译者:好像是4K限制)
5.两个单引号为指定的转义字符?
6.warn, crit, min or max 可以为空(比如,如果没有定义阀值,最大最小值则不适用)并且最后的分号可以省略
7.如果UOM为%,则不需要最大最小值
8.value, min and max只能为负号“-” “0到9” 和小数点“.” 并且单位必须统一 例如:cpu_user=0.5%;99.9;-9;
9.warn and crit必须在某个区间格式,参见2.5章。单位也必须统一
10.UOM必须为以下其中之一
1.如果未指定,默认为数字(整数和浮点数)(比如用户数,进程数,负载等)
2. s – 秒 (可以为纳秒us或毫秒ms) cpu_user=0s;100;90; cpu_system=0us;100;70; cpu_idle=0ms;100;70;
3. % – 百分号 cpu_user=0%;100;90; cpu_system=0%;100;70; cpu_idle=99%;100;70;
4. B – 字节(可可以是KB ,MB TB)cpu_user=0KB;100;90; cpu_system=0MB;100;70; cpu_idle=0B;100;70;
5. c – 一个计数器 (比如网卡的流量)cpu_user=10c;100;90;
2、total_process画图
修改nagios-plugins-1.4.15\plugins\check_procs.c文件
找到 main (int argc, char **argv) 函数,添加新的变量 pref:
char *perf;
perf = strdup("");
函数最后return result; 之前的 printf ("\n"); 修改为:
asprintf(&perf, "%s", perfdata ("processes", procs, "",
TRUE, wmax,
TRUE, cmax,
TRUE, 0,
FALSE, 0));
printf ("|%s\n",perf);
重新编译源代码,将新生成的check_procs替换掉老的文件
3、增加mysql监控
(1)下载
(2)
1
2
3
4
5
6
| # cp check_mysqld.pl /usr/local/nagios/libexec
# chmod 755 /usr/local/nagios/libexec/check_mysqld.pl
# chown nagios.nagios /usr/local/nagios/libexec/check_mysqld.pl
# cp check_mysqld.php /usr/local/pnp4nagios/share/templates.dist
# chown nagios.nagios /usr/local/pnp4nagios/share/templates.dist/check_mysqld.php
# chmod 755 /usr/local/pnp4nagios/share/templates.dist/check_mysqld.php
|
(3)
1
2
3
4
5
| # vi command.cfg
define command{
command_name check_mysqld
command_line $USER1$/check_mysqld.pl -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -D $ARG3$ -a uptime,threads_connected,questions,slow_queries,open_tables -w ',,,,' -c ',,,,' -A $USER21$
}
|
(4)
1
2
3
| #vi resouce.cfg
$USER7$=nagios
$USER21$='com_select,com_update,com_insert,com_insert_select,com_commit,com_delete,com_rollback,aborted_clients,aborted_connects,binlog_cache_disk_use,binlog_cache_use,bytes_received,bytes_sent,connections,created_tmp_disk_tables,created_tmp_files,created_tmp_tables,delayed_errors,delayed_insert_threads,delayed_writes,handler_update,handler_write,handler_delete,handler_read_first,handler_read_key,handler_read_next,handler_read_prev,handler_read_rnd,handler_read_rnd_next,key_blocks_not_flushed,key_blocks_unused,key_blocks_used,key_read_requests,key_reads,key_write_requests,key_writes,max_used_connections,not_flushed_delayed_rows,open_files,open_streams,open_tables,opened_tables,prepared_stmt_count,qcache_free_blocks,qcache_free_memory,qcache_hits,qcache_inserts,qcache_lowmem_prunes,qcache_not_cached,qcache_queries_in_cache,qcache_total_blocks,questions,select_full_join,select_rangle_check,slow_launch_threads,slow_queries,table_locks_immediate,table_locks_waited,threads_cached,threads_connected,threads_created,threads_running'
|
(5)
1
2
3
4
5
6
7
| #vi mysql.cfg
define service{
use generic-service,srv-pnp
host_name mysql
service_description Mysqld_pnp
check_command check_mysqld!nagios!nagios!nagdb
}
|
这里贴一个自己使用的较完整的监控配置:
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| vi mysql.cfg
define host{
use linux-server,host-pnp
host_name mysql
alias My mysql Host
address 192.168.1.101
}
#define service{
# use generic-service
# host_name nginx
# service_description http
# check_command check_http!3!10
# }
#define service{
# use generic-service
# host_name nginx
# service_description PING
# check_command check_ping!100.0,20%!500.0,60%
# }
#define service{
# use generic-service
# host_name nginx
# service_description tomcat
# check_command check_tomcat!15!30
# }
define service{
use generic-service
host_name mysql
service_description Mysqld
check_command check_mysql!nagios!nagios!10!60
}
define service{
use generic-service,srv-pnp
host_name mysql
service_description Mysqld_pnp
check_command check_mysqld!nagios!nagios!nagdb
}
define service{
use generic-service,srv-pnp
host_name mysql
service_description CHECK USERS
check_command check_nrpe!check_users
}
# Create a service for monitoring the uptime of the server
# Change the host_name to match the name of the host you defined above
define service{
use generic-service,srv-pnp
host_name mysql
service_description Load
check_command check_nrpe!check_load
}
# Create a service for monitoring CPU load
# Change the host_name to match the name of the host you defined above
define service{
use generic-service,srv-pnp
host_name mysql
service_description SDA1
check_command check_nrpe!check_sd1
}
# Create a service for monitoring memory usage
# Change the host_name to match the name of the host you defined above
define service{
use generic-service,srv-pnp
host_name mysql
service_description SDA2
check_command check_nrpe!check_sd2
}
# Create a service for monitoring C:\ disk usage
# Change the host_name to match the name of the host you defined above
define service{
use generic-service,srv-pnp
host_name mysql
service_description Zombie
check_command check_nrpe!check_zombie_procs
}
# Create a service for monitoring the W3SVC service
# Change the host_name to match the name of the host you defined above
define service{
use generic-service,srv-pnp
host_name mysql
service_description total procs
check_command check_nrpe!check_total_procs
}
define service{
use generic-service,srv-pnp
host_name mysql
service_description Cpu
check_command check_nrpe!check_cpu
}
define service{
use generic-service,srv-pnp
host_name mysql
service_description Mem
check_command check_nrpe!check_mem
}
#define service{
# use generic-service
# host_name mysql
# service_description Http
# check_command check_http!/
# }
define service{
use generic-service,srv-pnp
host_name mysql
service_description Ping
check_command check_ping!100.0,20%!500.0,60%
}
define service{
use generic-service,srv-pnp
host_name mysql
service_description check_memcached_11211
check_command check_memcached_11211!80!100
}
define service{
use generic-service,srv-pnp
host_name mysql
service_description check_memcached_response_11211
check_command check_memcached_response_11211!300!500
}
define service{
use generic-service,srv-pnp
host_name mysql
service_description check_memcached_hit
check_command check_memcached_hit!10!5
}
|
呵呵,基本算是做完了,第一次写博客,希望以后能坚持下来。。感谢关注
|
|