VictoriaMetrics/app/vmalert/notifier/notifier.go

9 lines
172 B
Go
Raw Normal View History

2020-04-27 21:19:27 +00:00
package notifier
import "context"
2020-04-27 21:19:27 +00:00
// Notifier is common interface for alert manager provider
type Notifier interface {
Send(ctx context.Context, alerts []Alert) error
2020-04-27 21:19:27 +00:00
}