0

我当前对主机的服务定义如下所示

define service{
        use                             xyzserver        
        host_name                       backup.xyz.com
        service_description             http
        check_command                   check_http  #??
        }

我想将 check_http 的警告和关键时间增加到 5 分钟(警告)和 10 分钟(关键)

我的 nagios 服务器上的命令定义如下所示

# 'check_http' command definition
define command{
        command_name    check_http
        command_line    $USER1$/check_http -I $HOSTADDRESS$ $ARG1$
        }

我已经直接在命令行上运行了 check_http,如下所示,它按预期输出,但我不知道在“服务定义”中将参数(如警告、关键、超时和端口号)准确放置在哪里

./check_http -H 172.217.0.238 -w 60 -c 70 -t 60
4

1 回答 1

0

像这样的东西怎么样:

define service{
        use                             xyzserver        
        host_name                       backup.xyz.com
        service_description             http
        check_command                   check_http!'-H 172.217.0.238 -w 60 -c 70 -t 60'
        }
于 2017-09-07T07:23:20.027 回答