nagios监控多个磁盘空间

简介:

ngios默认监控第一个磁盘分区,需要在service中定义多个监控项,如:

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
define service {
                 service_description                   check_disk3
                 max_check_attempts                    3
                 check_interval                        1
                 retry_interval                        3
                 notification_interval                 0
                 notification_options                  w,u,c,r,f,s
                 notifications_enabled                 1
                 check_command                         check_nrpe!check_disk3
                 check_period                          24x7
                 notification_period                   24x7
                 host_name                             AFA_EBS_DB
}
define service {
                 service_description                   check_disk4
                 max_check_attempts                    3
                 check_interval                        1
                 retry_interval                        3
                 notification_interval                 0
                 notification_options                  w,u,c,r,f,s
                 notifications_enabled                 1
                 check_command                         check_nrpe!check_disk4
                 check_period                          24x7
                 notification_period                   24x7
                 host_name                             AFA_EBS_DB

然后再监控机上配置这些项即可,如:

1
2
3
4
command [check_disk3]= /usr/local/nagios/libexec/check_disk  -w 20% -c 10% -p  /dev/emcpowera1
command [check_disk4]= /usr/local/nagios/libexec/check_disk  -w 20% -c 10% -p  /dev/emcpowerb1
command [check_disk5]= /usr/local/nagios/libexec/check_disk  -w 20% -c 10% -p  /dev/sdb1
command [check_disk6]= /usr/local/nagios/libexec/check_disk  -w 20% -c 10% -p  /dev/emcpowerc1

分别重启监控端和被监控段的服务即可

效果如下:

wKioL1SHrb3CdV4TAAEuFhbXMq8564.jpg


本文转自wangfeng7399 51CTO博客,原文链接:http://blog.51cto.com/wangfeng7399/1588170,如需转载请自行联系原作者


相关文章
|
1月前
|
监控 安全 Linux
使用NRPE和Nagios监控Linux系统资源的方法
通过遵循以上步骤,可以有效地使用NRPE和Nagios监控Linux系统资源,确保系统运行稳定,并及时响应任何潜在的问题。这种方法提供了高度的可定制性和灵活性,适用于从小型环境到大型分布式系统的各种监控需求。
44 2
|
机器学习/深度学习 监控 应用服务中间件
监控命令之tsar
1.1 tsar是什么?   tsar是淘宝自己开发的一个采集工具(类似于sar工具),主要用来收集服务器的系统信息(如cpu,io,mem,tcp等),以及应用数据(如squid haproxy nginx等)。
2106 0
|
监控 测试技术 PHP
|
监控 Apache 数据安全/隐私保护
|
监控 Unix Linux
|
监控 Linux 开发工具