mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
b099d84271
* Initial rules evaluation support. Rules are now store alerts state in private field `alerts`. Every evaluation updates the alerts and state. Every unique metric received from datastore represents a unique alert, uniqueness is guaranteed by hashing ordered labelset. * merge with master * cleanup * support endAt parameter as 3*evaluationInterval for active alerts * make golint happy
6 lines
133 B
Go
6 lines
133 B
Go
package notifier
|
|
|
|
// Notifier is common interface for alert manager provider
|
|
type Notifier interface {
|
|
Send(alerts []Alert) error
|
|
}
|