mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
26 lines
590 B
Go
26 lines
590 B
Go
package alerting
|
|
|
|
import "github.com/grafana/grafana/pkg/components/null"
|
|
|
|
// Job holds state about when the alert rule should be evaluated.
|
|
type Job struct {
|
|
Offset int64
|
|
OffsetWait bool
|
|
Delay bool
|
|
Running bool
|
|
Rule *Rule
|
|
}
|
|
|
|
// ResultLogEntry represents log data for the alert evaluation.
|
|
type ResultLogEntry struct {
|
|
Message string
|
|
Data interface{}
|
|
}
|
|
|
|
// EvalMatch represents the serie violating the threshold.
|
|
type EvalMatch struct {
|
|
Value null.Float `json:"value"`
|
|
Metric string `json:"metric"`
|
|
Tags map[string]string `json:"tags"`
|
|
}
|