mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
12 lines
301 B
Go
12 lines
301 B
Go
|
package provider
|
||
|
|
||
|
import "github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/config"
|
||
|
|
||
|
// AlertManager represents integration provider with Prometheus alert manager
|
||
|
type AlertManager struct{}
|
||
|
|
||
|
// Send an alert or resolve message
|
||
|
func (a *AlertManager) Send(rule config.Alert) error {
|
||
|
return nil
|
||
|
}
|