我们正在使用 Shinken Framework 来监控我们的服务器,因为我想要在每天凌晨1点执行一次服务检查的场景> strong>,我该如何配置?
使用 check_interval 或 time_period 可以实现此目的吗?
答案 0 :(得分:1)
您需要设置check_interval
和check_period
例如,我们每天上午9点使用支票查看系统更新。只需根据您的需求更改时间和服务。
define timeperiod {
timeperiod_name morning_check
alias morning_check
monday 09:00-09:01
tuesday 09:00-09:01
wednesday 09:00-09:01
thursday 09:00-09:01
friday 09:00-09:01
saturday 09:00-09:01
sunday 09:00-09:01
}
define service {
service_description updates
host_name Docker
use svc-pnp,local_standard_mail
check_command ext_nrpe!check_updates!null
check_period morning_check
check_interval 1440
max_check_attempts 1
notification_interval 1440
}