1.定义主机
define host{
host_name 主机名
alias 主机名
use 系统类型
address 需要监控服务器的IP地址
}
2.定义主机组名
define hostgroup{
hostgroup_name 组名
members 成员中间用逗号分开
}
3.定义联系人
define contact{
contact_name 联系对像名
service_notification_period 24x7
host_notification_period 24x7
service_notification_options w,u,c,r
host_notification_options d,u,r
service_notification_commands notify-service-by-email (命令)
host_notification_commands notify-host-by-email (命令)
email 发送的邮件地址
pager 短信号码
}
4.定需要监控的服务
define service{
hostgroup_name 组名
service_description check-ssh
check_command check_ssh
max_check_attempts 3
normal_check_interval 10
retry_check_interval 2
check_period 24x7
notification_interval 10
notification_period 24x7
notification_options w,u,c,r
contact_groups 告警对象
}
define service{
hostgroup_name 服务器组名
service_description PING
check_command check_ping!100.0,20%!500.0,60%!5
max_check_attempts 3
normal_check_interval 10
retry_check_interval 2
check_period 24x7
notification_interval 10
notification_period 24x7
notification_options w,u,c,r
contact_groups 告警对象
}
阅读(955) | 评论(0) | 转发(0) |