0

似乎找不到解决办法。我知道这可能很容易,我是一个红宝石菜鸟..roob,但希望能得到帮助。

我如何将间隔检查设置为 5/5。因此,请在第 5 次尝试失败时提醒我。

这是我在厨师客户服务的厨师数据包中所拥有的:

{
    "command_line": "$USER1$/check_nrpe -H $HOSTADDRESS$ -t 45 -c wt_check_procs -a '-t 60 -c 1: -C 'chef-client''",
    "hostgroup_name": "chef_managed_systems",
    "id": "chef-client",
    "contact_groups": "email_and_page",
    "event_handler": "restart_chef"
}

我将如何在我的数据包中定义类似以下内容:

define service{
host_name               A Host
service_description     A Service
normal_check_interval   5
retry_check_interval    1
max_check_attempts      5
}
4

1 回答 1

0

查看https://github.com/opscode-cookbooks/nagios/blob/master/templates/default/services.cfg.erb#L14我猜想通过简单地定义这些属性,就像现有的属性一样 - 只需识别json格式。

于 2013-06-09T14:35:07.280 回答