2015-10-11 15:24:49 +00:00
|
|
|
// Copyright 2015 Prometheus Team
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-09-30 14:13:00 +00:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
2015-10-02 12:10:04 +00:00
|
|
|
"fmt"
|
2015-11-30 10:20:13 +00:00
|
|
|
"sync"
|
2015-09-30 14:13:00 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
. "github.com/prometheus/alertmanager/test"
|
|
|
|
)
|
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
// This file contains acceptance tests around the basic sending logic
|
|
|
|
// for notifications, which includes batching and ensuring that each
|
|
|
|
// notification is eventually sent at least once and ideally exactly
|
|
|
|
// once.
|
|
|
|
|
2015-10-15 10:46:51 +00:00
|
|
|
func TestMergeAlerts(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
conf := `
|
2015-10-19 14:52:54 +00:00
|
|
|
route:
|
2015-11-10 13:08:20 +00:00
|
|
|
receiver: "default"
|
2015-10-19 15:35:59 +00:00
|
|
|
group_by: []
|
2015-10-15 10:46:51 +00:00
|
|
|
group_wait: 1s
|
|
|
|
group_interval: 1s
|
2018-02-09 09:53:46 +00:00
|
|
|
repeat_interval: 1ms
|
2015-10-15 10:46:51 +00:00
|
|
|
|
2015-11-10 13:08:20 +00:00
|
|
|
receivers:
|
2015-10-15 10:46:51 +00:00
|
|
|
- name: "default"
|
|
|
|
webhook_configs:
|
|
|
|
- url: 'http://%s'
|
2015-12-23 07:31:50 +00:00
|
|
|
send_resolved: true
|
2015-10-15 10:46:51 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
at := NewAcceptanceTest(t, &AcceptanceOpts{
|
|
|
|
Tolerance: 150 * time.Millisecond,
|
|
|
|
})
|
|
|
|
|
|
|
|
co := at.Collector("webhook")
|
|
|
|
wh := NewWebhook(co)
|
|
|
|
|
|
|
|
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
|
|
|
|
|
2015-10-20 09:59:40 +00:00
|
|
|
// Refresh an alert several times. The starting time must remain at the earliest
|
|
|
|
// point in time.
|
|
|
|
am.Push(At(1), Alert("alertname", "test").Active(1.1))
|
|
|
|
// Another Prometheus server might be sending later but with an earlier start time.
|
|
|
|
am.Push(At(1.2), Alert("alertname", "test").Active(1))
|
2015-10-15 10:46:51 +00:00
|
|
|
|
|
|
|
co.Want(Between(2, 2.5), Alert("alertname", "test").Active(1))
|
|
|
|
|
|
|
|
am.Push(At(2.1), Alert("alertname", "test").Annotate("ann", "v1").Active(2))
|
|
|
|
|
|
|
|
co.Want(Between(3, 3.5), Alert("alertname", "test").Annotate("ann", "v1").Active(1))
|
|
|
|
|
2015-10-20 09:59:40 +00:00
|
|
|
// Annotations are always overwritten by the alert that arrived most recently.
|
2015-10-15 10:46:51 +00:00
|
|
|
am.Push(At(3.6), Alert("alertname", "test").Annotate("ann", "v2").Active(1.5))
|
|
|
|
|
|
|
|
co.Want(Between(4, 4.5), Alert("alertname", "test").Annotate("ann", "v2").Active(1))
|
|
|
|
|
2015-10-20 09:59:40 +00:00
|
|
|
// If an alert is marked resolved twice, the latest point in time must be
|
|
|
|
// set as the eventual resolve time.
|
|
|
|
am.Push(At(4.6), Alert("alertname", "test").Annotate("ann", "v2").Active(3, 4.5))
|
|
|
|
am.Push(At(4.8), Alert("alertname", "test").Annotate("ann", "v3").Active(2.9, 4.8))
|
|
|
|
am.Push(At(4.8), Alert("alertname", "test").Annotate("ann", "v3").Active(2.9, 4.1))
|
|
|
|
|
|
|
|
co.Want(Between(5, 5.5), Alert("alertname", "test").Annotate("ann", "v3").Active(1, 4.8))
|
|
|
|
|
|
|
|
// Reactivate an alert after a previous occurrence has been resolved.
|
|
|
|
// No overlap, no merge must occur.
|
|
|
|
am.Push(At(5.3), Alert("alertname", "test"))
|
|
|
|
|
|
|
|
co.Want(Between(6, 6.5), Alert("alertname", "test").Active(5.3))
|
|
|
|
|
|
|
|
// Test against a bug which ocurrec after a restart. The previous occurrence of
|
|
|
|
// the alert was sent rather than the most recent one.
|
2016-06-02 13:43:04 +00:00
|
|
|
//
|
|
|
|
// XXX(fabxc) disabled as notification info won't be persisted. Thus, with a mesh
|
|
|
|
// notifier we lose the state in this single-node setup.
|
|
|
|
//at.Do(At(6.7), func() {
|
2016-05-17 19:34:08 +00:00
|
|
|
// am.Terminate()
|
|
|
|
// am.Start()
|
2016-06-02 13:43:04 +00:00
|
|
|
//})
|
2015-10-20 09:59:40 +00:00
|
|
|
|
|
|
|
// On restart the alert is flushed right away as the group_wait has already passed.
|
|
|
|
// However, it must be caught in the deduplication stage.
|
|
|
|
// The next attempt will be 1s later and won't be filtered in deduping.
|
2016-06-02 13:43:04 +00:00
|
|
|
//co.Want(Between(7.7, 8), Alert("alertname", "test").Active(5.3))
|
2015-10-20 09:59:40 +00:00
|
|
|
|
2015-10-15 10:46:51 +00:00
|
|
|
at.Run()
|
|
|
|
}
|
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
func TestRepeat(t *testing.T) {
|
2015-10-02 12:10:04 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
conf := `
|
2015-10-19 14:52:54 +00:00
|
|
|
route:
|
2015-11-10 13:08:20 +00:00
|
|
|
receiver: "default"
|
2015-10-19 15:35:59 +00:00
|
|
|
group_by: []
|
2015-10-08 08:50:37 +00:00
|
|
|
group_wait: 1s
|
|
|
|
group_interval: 1s
|
2018-02-09 09:53:46 +00:00
|
|
|
repeat_interval: 1ms
|
2015-09-30 14:13:00 +00:00
|
|
|
|
2015-11-10 13:08:20 +00:00
|
|
|
receivers:
|
2015-09-30 14:13:00 +00:00
|
|
|
- name: "default"
|
|
|
|
webhook_configs:
|
2015-10-02 12:10:04 +00:00
|
|
|
- url: 'http://%s'
|
2015-09-30 14:13:00 +00:00
|
|
|
`
|
|
|
|
|
2015-09-30 14:18:44 +00:00
|
|
|
// Create a new acceptance test that instantiates new Alertmanagers
|
|
|
|
// with the given configuration and verifies times with the given
|
|
|
|
// tollerance.
|
2015-09-30 14:13:00 +00:00
|
|
|
at := NewAcceptanceTest(t, &AcceptanceOpts{
|
|
|
|
Tolerance: 150 * time.Millisecond,
|
|
|
|
})
|
|
|
|
|
2015-09-30 14:18:44 +00:00
|
|
|
// Create a collector to which alerts can be written and verified
|
|
|
|
// against a set of expected alert notifications.
|
2015-09-30 14:13:00 +00:00
|
|
|
co := at.Collector("webhook")
|
2015-09-30 14:18:44 +00:00
|
|
|
// Run something that satisfies the webhook interface to which the
|
|
|
|
// Alertmanager pushes as defined by its configuration.
|
2015-10-02 12:10:04 +00:00
|
|
|
wh := NewWebhook(co)
|
|
|
|
|
|
|
|
// Create a new Alertmanager process listening to a random port
|
|
|
|
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
|
2015-09-30 14:13:00 +00:00
|
|
|
|
2015-09-30 14:18:44 +00:00
|
|
|
// Declare pushes to be made to the Alertmanager at the given time.
|
|
|
|
// Times are provided in fractions of seconds.
|
2015-09-30 14:13:00 +00:00
|
|
|
am.Push(At(1), Alert("alertname", "test").Active(1))
|
2015-10-07 14:18:55 +00:00
|
|
|
|
2016-05-17 19:34:08 +00:00
|
|
|
// XXX(fabxc): disabled as long as alerts are not persisted.
|
|
|
|
// at.Do(At(1.2), func() {
|
|
|
|
// am.Terminate()
|
|
|
|
// am.Start()
|
|
|
|
// })
|
2015-09-30 14:13:00 +00:00
|
|
|
am.Push(At(3.5), Alert("alertname", "test").Active(1, 3))
|
|
|
|
|
2015-09-30 14:18:44 +00:00
|
|
|
// Declare which alerts are expected to arrive at the collector within
|
|
|
|
// the defined time intervals.
|
2015-09-30 14:13:00 +00:00
|
|
|
co.Want(Between(2, 2.5), Alert("alertname", "test").Active(1))
|
|
|
|
co.Want(Between(3, 3.5), Alert("alertname", "test").Active(1))
|
2015-09-30 15:35:33 +00:00
|
|
|
co.Want(Between(4, 4.5), Alert("alertname", "test").Active(1, 3))
|
2015-09-30 14:13:00 +00:00
|
|
|
|
2015-09-30 14:18:44 +00:00
|
|
|
// Start the flow as defined above and run the checks afterwards.
|
2015-09-30 14:13:00 +00:00
|
|
|
at.Run()
|
|
|
|
}
|
2015-09-30 16:02:47 +00:00
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
func TestRetry(t *testing.T) {
|
2015-10-02 12:10:04 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
// We create a notification config that fans out into two different
|
|
|
|
// webhooks.
|
|
|
|
// The succeeding one must still only receive the first successful
|
|
|
|
// notifications. Sending to the succeeding one must eventually succeed.
|
2015-10-02 12:10:04 +00:00
|
|
|
conf := `
|
2015-10-19 14:52:54 +00:00
|
|
|
route:
|
2015-11-10 13:08:20 +00:00
|
|
|
receiver: "default"
|
2015-10-19 15:35:59 +00:00
|
|
|
group_by: []
|
2015-10-08 08:50:37 +00:00
|
|
|
group_wait: 1s
|
|
|
|
group_interval: 1s
|
2015-10-12 05:35:22 +00:00
|
|
|
repeat_interval: 3s
|
2015-10-01 19:28:18 +00:00
|
|
|
|
2015-11-10 13:08:20 +00:00
|
|
|
receivers:
|
2015-10-01 19:28:18 +00:00
|
|
|
- name: "default"
|
|
|
|
webhook_configs:
|
2015-10-02 12:10:04 +00:00
|
|
|
- url: 'http://%s'
|
2015-10-12 05:35:22 +00:00
|
|
|
- url: 'http://%s'
|
2015-10-01 19:28:18 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
at := NewAcceptanceTest(t, &AcceptanceOpts{
|
|
|
|
Tolerance: 150 * time.Millisecond,
|
|
|
|
})
|
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
co1 := at.Collector("webhook")
|
|
|
|
wh1 := NewWebhook(co1)
|
2015-10-01 19:28:18 +00:00
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
co2 := at.Collector("webhook_failing")
|
|
|
|
wh2 := NewWebhook(co2)
|
2015-10-01 19:28:18 +00:00
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
wh2.Func = func(ts float64) bool {
|
|
|
|
// Fail the first two interval periods but eventually
|
|
|
|
// succeed in the third interval after a few failed attempts.
|
|
|
|
return ts < 4.5
|
|
|
|
}
|
2015-10-01 19:28:18 +00:00
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
am := at.Alertmanager(fmt.Sprintf(conf, wh1.Address(), wh2.Address()))
|
2015-10-01 19:28:18 +00:00
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
am.Push(At(1), Alert("alertname", "test1"))
|
2015-10-01 19:28:18 +00:00
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
co1.Want(Between(2, 2.5), Alert("alertname", "test1").Active(1))
|
|
|
|
co1.Want(Between(5, 5.5), Alert("alertname", "test1").Active(1))
|
2015-10-01 19:28:18 +00:00
|
|
|
|
2015-10-12 05:35:22 +00:00
|
|
|
co2.Want(Between(4.5, 5), Alert("alertname", "test1").Active(1))
|
2015-10-01 19:28:18 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 12:10:04 +00:00
|
|
|
func TestBatching(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
conf := `
|
2015-10-19 14:52:54 +00:00
|
|
|
route:
|
2015-11-10 13:08:20 +00:00
|
|
|
receiver: "default"
|
2015-10-19 15:35:59 +00:00
|
|
|
group_by: []
|
2015-10-08 08:50:37 +00:00
|
|
|
group_wait: 1s
|
|
|
|
group_interval: 1s
|
2018-01-11 21:45:59 +00:00
|
|
|
# use a value slightly below the 5s interval to avoid timing issues
|
|
|
|
repeat_interval: 4900ms
|
2015-09-30 16:02:47 +00:00
|
|
|
|
2015-11-10 13:08:20 +00:00
|
|
|
receivers:
|
|
|
|
- name: "default"
|
2015-09-30 16:02:47 +00:00
|
|
|
webhook_configs:
|
2015-10-02 12:10:04 +00:00
|
|
|
- url: 'http://%s'
|
2015-09-30 16:02:47 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
at := NewAcceptanceTest(t, &AcceptanceOpts{
|
|
|
|
Tolerance: 150 * time.Millisecond,
|
|
|
|
})
|
|
|
|
|
|
|
|
co := at.Collector("webhook")
|
2015-10-02 12:10:04 +00:00
|
|
|
wh := NewWebhook(co)
|
2015-09-30 16:02:47 +00:00
|
|
|
|
2015-10-02 12:10:04 +00:00
|
|
|
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
|
2015-09-30 16:02:47 +00:00
|
|
|
|
|
|
|
am.Push(At(1.1), Alert("alertname", "test1").Active(1))
|
2016-01-08 14:15:14 +00:00
|
|
|
am.Push(At(1.7), Alert("alertname", "test5").Active(1))
|
|
|
|
|
|
|
|
co.Want(Between(2.0, 2.5),
|
|
|
|
Alert("alertname", "test1").Active(1),
|
|
|
|
Alert("alertname", "test5").Active(1),
|
|
|
|
)
|
|
|
|
|
|
|
|
am.Push(At(3.3),
|
2015-09-30 16:02:47 +00:00
|
|
|
Alert("alertname", "test2").Active(1.5),
|
|
|
|
Alert("alertname", "test3").Active(1.5),
|
|
|
|
Alert("alertname", "test4").Active(1.6),
|
|
|
|
)
|
|
|
|
|
2016-01-08 14:15:14 +00:00
|
|
|
co.Want(Between(4.1, 4.5),
|
2015-09-30 16:02:47 +00:00
|
|
|
Alert("alertname", "test1").Active(1),
|
|
|
|
Alert("alertname", "test5").Active(1),
|
|
|
|
Alert("alertname", "test2").Active(1.5),
|
|
|
|
Alert("alertname", "test3").Active(1.5),
|
|
|
|
Alert("alertname", "test4").Active(1.6),
|
|
|
|
)
|
|
|
|
|
|
|
|
// While no changes happen expect no additional notifications
|
|
|
|
// until the 5s repeat interval has ended.
|
2015-10-01 07:43:51 +00:00
|
|
|
|
2016-01-08 14:15:14 +00:00
|
|
|
co.Want(Between(9.1, 9.5),
|
2015-09-30 16:02:47 +00:00
|
|
|
Alert("alertname", "test1").Active(1),
|
2015-09-30 16:45:49 +00:00
|
|
|
Alert("alertname", "test5").Active(1),
|
2015-09-30 16:02:47 +00:00
|
|
|
Alert("alertname", "test2").Active(1.5),
|
|
|
|
Alert("alertname", "test3").Active(1.5),
|
|
|
|
Alert("alertname", "test4").Active(1.6),
|
|
|
|
)
|
|
|
|
|
|
|
|
at.Run()
|
|
|
|
}
|
2015-11-30 10:20:13 +00:00
|
|
|
|
|
|
|
func TestResolved(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
conf := `
|
|
|
|
global:
|
|
|
|
resolve_timeout: 10s
|
|
|
|
|
|
|
|
route:
|
|
|
|
receiver: "default"
|
|
|
|
group_by: [alertname]
|
2017-11-01 22:08:34 +00:00
|
|
|
group_wait: 1s
|
2015-11-30 10:20:13 +00:00
|
|
|
group_interval: 5s
|
|
|
|
|
|
|
|
receivers:
|
|
|
|
- name: "default"
|
|
|
|
webhook_configs:
|
|
|
|
- url: 'http://%s'
|
|
|
|
`
|
|
|
|
|
|
|
|
at := NewAcceptanceTest(t, &AcceptanceOpts{
|
|
|
|
Tolerance: 150 * time.Millisecond,
|
|
|
|
})
|
|
|
|
|
|
|
|
co := at.Collector("webhook")
|
|
|
|
wh := NewWebhook(co)
|
|
|
|
|
|
|
|
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
|
|
|
|
|
|
|
|
am.Push(At(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v1"),
|
|
|
|
Alert("alertname", "test", "lbl", "v2"),
|
|
|
|
Alert("alertname", "test", "lbl", "v3"),
|
|
|
|
)
|
|
|
|
|
|
|
|
co.Want(Between(2, 2.5),
|
|
|
|
Alert("alertname", "test", "lbl", "v1").Active(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v2").Active(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v3").Active(1),
|
|
|
|
)
|
|
|
|
co.Want(Between(12, 13),
|
|
|
|
Alert("alertname", "test", "lbl", "v1").Active(1, 11),
|
|
|
|
Alert("alertname", "test", "lbl", "v2").Active(1, 11),
|
|
|
|
Alert("alertname", "test", "lbl", "v3").Active(1, 11),
|
|
|
|
)
|
|
|
|
|
|
|
|
at.Run()
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
}
|
2016-10-05 14:28:04 +00:00
|
|
|
|
|
|
|
func TestResolvedFilter(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
// This integration test ensures that even though resolved alerts may not be
|
|
|
|
// notified about, they must be set as notified. Resolved alerts, even when
|
|
|
|
// filtered, have to end up in the SetNotifiesStage, otherwise when an alert
|
|
|
|
// fires again it is ambiguous whether it was resolved in between or not.
|
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
conf := `
|
2016-10-05 14:28:04 +00:00
|
|
|
global:
|
|
|
|
resolve_timeout: 10s
|
|
|
|
|
|
|
|
route:
|
|
|
|
receiver: "default"
|
|
|
|
group_by: [alertname]
|
|
|
|
group_wait: 1s
|
|
|
|
group_interval: 5s
|
|
|
|
|
|
|
|
receivers:
|
|
|
|
- name: "default"
|
|
|
|
webhook_configs:
|
|
|
|
- url: 'http://%s'
|
|
|
|
send_resolved: true
|
|
|
|
- url: 'http://%s'
|
|
|
|
send_resolved: false
|
|
|
|
`
|
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
at := NewAcceptanceTest(t, &AcceptanceOpts{
|
|
|
|
Tolerance: 150 * time.Millisecond,
|
|
|
|
})
|
2016-10-05 14:28:04 +00:00
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
co1 := at.Collector("webhook1")
|
|
|
|
wh1 := NewWebhook(co1)
|
2016-10-05 14:28:04 +00:00
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
co2 := at.Collector("webhook2")
|
|
|
|
wh2 := NewWebhook(co2)
|
2016-10-05 14:28:04 +00:00
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
am := at.Alertmanager(fmt.Sprintf(conf, wh1.Address(), wh2.Address()))
|
2016-10-05 14:28:04 +00:00
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
am.Push(At(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v1"),
|
|
|
|
Alert("alertname", "test", "lbl", "v2"),
|
|
|
|
)
|
|
|
|
am.Push(At(3),
|
|
|
|
Alert("alertname", "test", "lbl", "v1").Active(1, 4),
|
|
|
|
Alert("alertname", "test", "lbl", "v3"),
|
|
|
|
)
|
|
|
|
am.Push(At(8),
|
|
|
|
Alert("alertname", "test", "lbl", "v3").Active(3),
|
|
|
|
)
|
2016-10-05 14:28:04 +00:00
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
co1.Want(Between(2, 2.5),
|
|
|
|
Alert("alertname", "test", "lbl", "v1").Active(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v2").Active(1),
|
|
|
|
)
|
|
|
|
co1.Want(Between(7, 7.5),
|
|
|
|
Alert("alertname", "test", "lbl", "v1").Active(1, 4),
|
|
|
|
Alert("alertname", "test", "lbl", "v2").Active(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v3").Active(3),
|
|
|
|
)
|
2018-01-23 15:52:03 +00:00
|
|
|
// no notification should be sent after group_interval because no new alert has been fired
|
|
|
|
co1.Want(Between(12, 12.5))
|
2016-10-05 14:28:04 +00:00
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
co2.Want(Between(2, 2.5),
|
|
|
|
Alert("alertname", "test", "lbl", "v1").Active(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v2").Active(1),
|
|
|
|
)
|
|
|
|
co2.Want(Between(7, 7.5),
|
|
|
|
Alert("alertname", "test", "lbl", "v2").Active(1),
|
|
|
|
Alert("alertname", "test", "lbl", "v3").Active(3),
|
|
|
|
)
|
2018-01-23 15:52:03 +00:00
|
|
|
co1.Want(Between(12, 12.5))
|
2016-10-05 14:28:04 +00:00
|
|
|
|
2017-03-13 12:44:36 +00:00
|
|
|
at.Run()
|
2016-10-05 14:28:04 +00:00
|
|
|
}
|
2017-04-18 09:50:18 +00:00
|
|
|
|
|
|
|
func TestReload(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
// We create a notification config that fans out into two different
|
|
|
|
// webhooks.
|
|
|
|
// The succeeding one must still only receive the first successful
|
|
|
|
// notifications. Sending to the succeeding one must eventually succeed.
|
|
|
|
conf := `
|
|
|
|
route:
|
|
|
|
receiver: "default"
|
|
|
|
group_by: []
|
|
|
|
group_wait: 1s
|
|
|
|
group_interval: 6s
|
|
|
|
repeat_interval: 10m
|
|
|
|
|
|
|
|
receivers:
|
|
|
|
- name: "default"
|
|
|
|
webhook_configs:
|
|
|
|
- url: 'http://%s'
|
|
|
|
`
|
|
|
|
|
|
|
|
at := NewAcceptanceTest(t, &AcceptanceOpts{
|
|
|
|
Tolerance: 150 * time.Millisecond,
|
|
|
|
})
|
|
|
|
|
|
|
|
co := at.Collector("webhook")
|
|
|
|
wh := NewWebhook(co)
|
|
|
|
|
|
|
|
am := at.Alertmanager(fmt.Sprintf(conf, wh.Address()))
|
|
|
|
|
|
|
|
am.Push(At(1), Alert("alertname", "test1"))
|
|
|
|
at.Do(At(3), am.Reload)
|
|
|
|
am.Push(At(4), Alert("alertname", "test2"))
|
|
|
|
|
|
|
|
co.Want(Between(2, 2.5), Alert("alertname", "test1").Active(1))
|
|
|
|
// Timers are reset on reload regardless, so we count the 6 second group
|
|
|
|
// interval from 3 onwards.
|
|
|
|
co.Want(Between(9, 9.5),
|
|
|
|
Alert("alertname", "test1").Active(1),
|
|
|
|
Alert("alertname", "test2").Active(4),
|
|
|
|
)
|
|
|
|
|
|
|
|
at.Run()
|
|
|
|
}
|