2
中的電子郵件通知,我將超時設置爲5分鐘,即5分鐘。 我收到5分鐘或10分鐘的電子郵件。 我無法調試,爲什麼會發生這種情況。 請幫忙。在Bosun配置通知中重複Bosun
notification default {
email [email protected]
print = true
next = default
timeout = 5m
}
template tags {
subject =`Testing Emails Sample`
body = `<p><strong>Tags</strong>
<table>
{{range $k, $v := .Group}}
{{if eq $k "api"}}
<tr><td>{{$k}} : {{$v}}</td></tr>
{{end}}
{{end}}
</table>`
}
alert testSampleAlert5 {
template = tags
$notes = This alert monitors the percentage of 5XX on arm APIs
crit = 1
warn = 0
warnNotification = default
critNotification = default
}
alert testSampleAlert4 {
template = tags
$notes = This alert monitors the percentage of 5XX on arm APIs
crit = 0
warn = 1
warnNotification = default
critNotification = default
}
嗨,我希望每5分鐘通知一次。但是,我有時會以5分鐘的時間間隔或10分鐘的時間間隔收到通知。 –