2019-03-01 15:43:33 +00:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2018-09-03 12:52:53 +00:00
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prometheus/common/model"
|
|
|
|
|
2022-03-25 16:59:51 +00:00
|
|
|
"github.com/prometheus/alertmanager/types"
|
2018-09-03 12:52:53 +00:00
|
|
|
)
|
|
|
|
|
2022-03-25 16:59:51 +00:00
|
|
|
// ErrNotFound is returned if a Store cannot find the Alert.
|
|
|
|
var ErrNotFound = errors.New("alert not found")
|
|
|
|
|
2018-09-03 12:52:53 +00:00
|
|
|
// Alerts provides lock-coordinated to an in-memory map of alerts, keyed by
|
|
|
|
// their fingerprint. Resolved alerts are removed from the map based on
|
|
|
|
// gcInterval. An optional callback can be set which receives a slice of all
|
|
|
|
// resolved alerts that have been removed.
|
|
|
|
type Alerts struct {
|
|
|
|
sync.Mutex
|
|
|
|
c map[model.Fingerprint]*types.Alert
|
|
|
|
cb func([]*types.Alert)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewAlerts returns a new Alerts struct.
|
2019-09-18 07:29:34 +00:00
|
|
|
func NewAlerts() *Alerts {
|
2018-09-03 12:52:53 +00:00
|
|
|
a := &Alerts{
|
2019-09-18 07:29:34 +00:00
|
|
|
c: make(map[model.Fingerprint]*types.Alert),
|
|
|
|
cb: func(_ []*types.Alert) {},
|
2018-09-03 12:52:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetGCCallback sets a GC callback to be executed after each GC.
|
|
|
|
func (a *Alerts) SetGCCallback(cb func([]*types.Alert)) {
|
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
|
|
|
a.cb = cb
|
|
|
|
}
|
|
|
|
|
2019-09-18 07:29:34 +00:00
|
|
|
// Run starts the GC loop. The interval must be greater than zero; if not, the function will panic.
|
|
|
|
func (a *Alerts) Run(ctx context.Context, interval time.Duration) {
|
2019-10-22 07:25:31 +00:00
|
|
|
t := time.NewTicker(interval)
|
|
|
|
defer t.Stop()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case <-t.C:
|
|
|
|
a.gc()
|
2018-09-03 12:52:53 +00:00
|
|
|
}
|
2019-10-22 07:25:31 +00:00
|
|
|
}
|
2018-09-03 12:52:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Alerts) gc() {
|
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
2018-12-19 01:52:24 +00:00
|
|
|
var resolved []*types.Alert
|
2018-09-03 12:52:53 +00:00
|
|
|
for fp, alert := range a.c {
|
|
|
|
if alert.Resolved() {
|
|
|
|
delete(a.c, fp)
|
|
|
|
resolved = append(resolved, alert)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a.cb(resolved)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get returns the Alert with the matching fingerprint, or an error if it is
|
|
|
|
// not found.
|
|
|
|
func (a *Alerts) Get(fp model.Fingerprint) (*types.Alert, error) {
|
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
|
|
|
alert, prs := a.c[fp]
|
|
|
|
if !prs {
|
|
|
|
return nil, ErrNotFound
|
|
|
|
}
|
|
|
|
return alert, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set unconditionally sets the alert in memory.
|
|
|
|
func (a *Alerts) Set(alert *types.Alert) error {
|
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
|
|
|
a.c[alert.Fingerprint()] = alert
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete removes the Alert with the matching fingerprint from the store.
|
|
|
|
func (a *Alerts) Delete(fp model.Fingerprint) error {
|
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
|
|
|
delete(a.c, fp)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-19 12:01:41 +00:00
|
|
|
// List returns a slice of Alerts currently held in memory.
|
|
|
|
func (a *Alerts) List() []*types.Alert {
|
2018-09-03 12:52:53 +00:00
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
2019-04-19 12:01:41 +00:00
|
|
|
alerts := make([]*types.Alert, 0, len(a.c))
|
2018-09-03 12:52:53 +00:00
|
|
|
for _, alert := range a.c {
|
2019-04-19 12:01:41 +00:00
|
|
|
alerts = append(alerts, alert)
|
2018-09-03 12:52:53 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 12:01:41 +00:00
|
|
|
return alerts
|
2018-09-03 12:52:53 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 12:01:41 +00:00
|
|
|
// Empty returns true if the store is empty.
|
|
|
|
func (a *Alerts) Empty() bool {
|
2018-09-03 12:52:53 +00:00
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
2019-04-19 12:01:41 +00:00
|
|
|
return len(a.c) == 0
|
2018-09-03 12:52:53 +00:00
|
|
|
}
|