mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
9 lines
218 B
Go
9 lines
218 B
Go
|
package provider
|
||
|
|
||
|
import "github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/config"
|
||
|
|
||
|
// AlertProvider is common interface for alert manager provider
|
||
|
type AlertProvider interface {
|
||
|
Send(rule config.Alert) error
|
||
|
}
|