我当前对主机的服务定义看起来像
define service{
use xyzserver
host_name backup.xyz.com
service_description http
check_command check_http #??
}
我想将警告和关键时间增加到5分钟(警告)和10分钟(关键)check_http
命令定义在我的Nagios Server上看起来像这样
# '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
这样的事情:
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'
}