nagios nrpe


layout: post

title: “nagios/nrpe”

nrpe

NRPE 可以理解为nagios 的 client for linux
源码下载: http://sourceforge.net/projects/nagios/files/nrpe-2.x/

编译安装

wget http://cznic.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.15/nrpe-2.15.tar.gz
tar -xvpf nrpe-2.15.tar.gz
cd nrpe-2.15
./configure --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu/
make all
make install-plugin
make install-daemon
make install-daemon-config
make install-xinetd    nrpe安装为xinetd服务(xinetd运行方式需要的安装步骤,独立进程不需要)

NRPE软件包

主要包含两个实用程序

  • check_nrpe 用于监控端,远程执行被监控端的nagios插件,将结果给返给nagios
  • nrpe 用于被监控端,建立demon,等待响应监控端的监控请求

被监控端配置(以 ubuntu 14.04.1 为例)

安装软件包:

apt-get install nagios-nrpe-server -y

基本配置:修改配置文件/etc/nagios/nrpe.cfg

allowed_hosts=IP # 更改为监控端的IP

重启服务:

service nagios-nrpe-server restart

监控端配置(以 ubuntu 14.04.1 为例)

安装软件包:

apt-get install nagios-nrpe-plugin -y

查看与被监控端的通讯是否正常

#/usr/local/nagios/libexec/check_nrpe -H localhost
NRPE v2.12

如果返回是NRPE v2.12 版本信息,说明监控与被监控端配置正确,如果不是请返回排错!

添加监控项

添加配置: 引用 /etc/nagios-plugins/config/check_nrpe.cfg 中的定义的command

define service {
        use                             generic-service
        hostgroup_name                  all
        service_description             NRPE check_hda1
        check_command                   check_nrpe_1arg!check_hda1
        notification_interval           0 
}

define service {
        use                             generic-service
        hostgroup_name                  all
        service_description             NRPE check_total_procs
        check_command                   check_nrpe_1arg!check_total_procs
        notification_interval           0 
}

特别说明是check_nrpe 命令参数中 command 是指 被监控端配置文件 /etc/nagios/nrpe.cfg 中定义的
如下:

command[check_users]=/usr/lib/nagios/plugins/check_users -w 5 -c 10
command[check_load]=/usr/lib/nagios/plugins/check_load -w 15,10,5 -c 30,25,20
command[check_hda1]=/usr/lib/nagios/plugins/check_disk -w 20% -c 10% -p /dev/sda1
command[check_zombie_procs]=/usr/lib/nagios/plugins/check_procs -w 5 -c 10 -s Z
command[check_total_procs]=/usr/lib/nagios/plugins/check_procs -w 150 -c 200
command[nrpe_check_ping]=/usr/lib/nagios/plugins/check_ping -w $ARG1$ -c $ARG2$ -p $ARG3$

重启服务:

service nagios3 restart

至此NRPE远端执行的插件配置就完成了,如果有需要增加监控项,需修改nagios配置文件和被监控端配置文件。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。