nagios(或icinga)将多个主机放到一个组内步骤

时间:2014-08-08 18:27:07   收藏:0   阅读:416


nagios将多个主机放到一个组内步骤:


# vi ming.cfg   


define host{
       use           linux-server
       host_name     ming
       alias         ming
       address       192.168.1.14
       action_url    /pnp4nagios/index.php/graph?host=$HOSTNAME$
       }


define host{
       use           linux-server
       host_name     ming2
       alias         ming2
       address       192.168.1.15
       action_url    /pnp4nagios/index.php/graph?host=$HOSTNAME$
       }
 

define  hostgroup{
       hostgroup_name  ubuntu
       alias           ubuntu
       members         ming,ming2    (主机间用","隔开)
       }

 

将hostgroup_name改为ming,members也改为ming


define service {
 
               use                generic-service
               host_name           ming,ming2
               service_description  check_load
               check_command        check_nrpe!check_load
}


define service {
 
               use                generic-service
               host_name           ming,ming2
               service_description  check_users
               check_command        check_nrpe!check_users
}

define service {
 
               use                generic-service
               host_name           ming,ming2
               service_description  check_total
               check_command        check_nrpe!check_total_procs
}


define service {
 
               use                generic-service
               host_name           ming,ming2
               service_description  check_hda1
               check_command        check_nrpe!check_hda1
}

 

:wq

本文出自 “linux” 博客,谢绝转载!

nagios(或icinga)将多个主机放到一个组内步骤,布布扣,bubuko.com

原文:http://yangzhiming.blog.51cto.com/4849999/1537522

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!