VictoriaMetrics/app/vmalert/notifier/notifier.go
2020-04-28 00:19:42 +03:00

6 lines
133 B
Go

package notifier
// Notifier is common interface for alert manager provider
type Notifier interface {
Send(alerts []Alert) error
}