mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
d354f3a8af
* fix(alerting): fixed evaluation for no_value condition, fixes #7244 * feat(alerting): moving null library into grafana, fixing handling on no value / no series
28 lines
459 B
Go
28 lines
459 B
Go
package alerting
|
|
|
|
import "github.com/grafana/grafana/pkg/components/null"
|
|
|
|
type Job struct {
|
|
Offset int64
|
|
OffsetWait bool
|
|
Delay bool
|
|
Running bool
|
|
Rule *Rule
|
|
}
|
|
|
|
type ResultLogEntry struct {
|
|
Message string
|
|
Data interface{}
|
|
}
|
|
|
|
type EvalMatch struct {
|
|
Value null.Float `json:"value"`
|
|
Metric string `json:"metric"`
|
|
Tags map[string]string `json:"tags"`
|
|
}
|
|
|
|
type Level struct {
|
|
Operator string
|
|
Value float64
|
|
}
|