mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
baab021fec
Refactor usage of legacy data contracts. Moves legacy data contracts to pkg/tsdb/legacydata package. Refactor pkg/expr to be a proper service/dependency that can be provided to wire to remove some unneeded dependencies to SSE in ngalert and other places. Refactor pkg/expr to not use the legacydata,RequestHandler and use backend.QueryDataHandler instead.
65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
package alerting
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/tsdb/legacydata"
|
|
)
|
|
|
|
type evalHandler interface {
|
|
Eval(evalContext *EvalContext)
|
|
}
|
|
|
|
type scheduler interface {
|
|
Tick(time time.Time, execQueue chan *Job)
|
|
Update(rules []*Rule)
|
|
}
|
|
|
|
// Notifier is responsible for sending alert notifications.
|
|
type Notifier interface {
|
|
Notify(evalContext *EvalContext) error
|
|
GetType() string
|
|
NeedsImage() bool
|
|
|
|
// ShouldNotify checks this evaluation should send an alert notification
|
|
ShouldNotify(ctx context.Context, evalContext *EvalContext, notificationState *models.AlertNotificationState) bool
|
|
|
|
GetNotifierUID() string
|
|
GetIsDefault() bool
|
|
GetSendReminder() bool
|
|
GetDisableResolveMessage() bool
|
|
GetFrequency() time.Duration
|
|
}
|
|
|
|
type notifierState struct {
|
|
notifier Notifier
|
|
state *models.AlertNotificationState
|
|
}
|
|
|
|
type notifierStateSlice []*notifierState
|
|
|
|
func (notifiers notifierStateSlice) ShouldUploadImage() bool {
|
|
for _, ns := range notifiers {
|
|
if ns.notifier.NeedsImage() {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// ConditionResult is the result of a condition evaluation.
|
|
type ConditionResult struct {
|
|
Firing bool
|
|
NoDataFound bool
|
|
Operator string
|
|
EvalMatches []*EvalMatch
|
|
}
|
|
|
|
// Condition is responsible for evaluating an alert condition.
|
|
type Condition interface {
|
|
Eval(result *EvalContext, requestHandler legacydata.RequestHandler) (*ConditionResult, error)
|
|
}
|