如何为nagios check_http自定义警告和临界时间?
How to have custom warning and critical time for nagios check_http?
我当前的主机服务定义如下所示
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 直接在命令行上,如下所示,它按预期输出,但我不知道在哪里准确放置参数,如 - 警告、关键、超时和端口号"Service Defination"
./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'
}
我当前的主机服务定义如下所示
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 直接在命令行上,如下所示,它按预期输出,但我不知道在哪里准确放置参数,如 - 警告、关键、超时和端口号"Service Defination"
./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'
}