mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
229 B
Go
13 lines
229 B
Go
package alerting
|
|
|
|
import "time"
|
|
|
|
type AlertingHandler interface {
|
|
Execute(rule *AlertJob, resultChan chan *AlertResult)
|
|
}
|
|
|
|
type Scheduler interface {
|
|
Tick(time time.Time, execQueue chan *AlertJob)
|
|
Update(rules []*AlertRule)
|
|
}
|