Bosun 总览

示例

使用warnNotification和critNotification将Bosun通知分配给警报定义,并在发生新事件时指示将渲染的警报模板发送到何处。通知可以通过电子邮件发送或使用HTTP GET / POST请求。还有一个打印通知,仅将信息添加到Bosun日志文件中。

如果要隐藏纯文本形式的URL,密码或API密钥,则可以用来${env.VARIABLENAME}从环境变量(通常是从Bosun初始化脚本中导出)中加载值。请注意,谁可以访问变量没有任何保护(它们可以很容易地显示在模板中),但是确实会阻止它们直接显示在“规则编辑器”页面或.conf文件中。

notification logfile {
    print = true
}

#print can be added to any notification type to help with debugging
notification email {
    email = sysadmins@example.com
    print = true
}