码迷,mamicode.com
首页 > 其他好文 > 详细

icinga2对特定服务设置专门发邮件策略

时间:2017-08-29 00:03:48      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:icinga2


icinga2对特定服务设置专门发邮件策略(如mysql、web等):


# vi /etc/icinga2/conf.d/timeperiods.conf (也可以新建个TimePeriod)


object TimePeriod "9to5" {

  import "legacy-timeperiod"


  display_name = "Icinga 2 9to5 TimePeriod"

  ranges = {

    "monday" = "08:00-20:00"

    "tuesday" = "08:00-20:00"

    "wednesday" = "08:00-20:00"

    "thursday" = "08:00-20:00"

    "friday" = "08:00-20:00"

  }

}

:wq


# vi /etc/icinga2/conf.d/services.conf 

 


apply Service "check_hudson" {

  import "generic-service"

  check_command = "check-http"

  vars.url="http://$address$:8080/jenkins"

  vars.port="8080"

  vars.perf = true

  assign where host.vars.os == "hudson"

}



apply Notification "mail" to Service {

  import "mail-service-notification-2"

  command = "mail-service-notification"

  users = [ "webicinga" ]

  assign where service.name == "check_hudson"

}

:wq



# service icinga2 restart




本文出自 “linux” 博客,请务必保留此出处http://yangzhiming.blog.51cto.com/4849999/1960088

icinga2对特定服务设置专门发邮件策略

标签:icinga2

原文地址:http://yangzhiming.blog.51cto.com/4849999/1960088

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!