0a85a30642
The first version of the app platform apis for alerting rules, including AlertRule and RecordingRule definitions. Co-authored-by: William Wernert <william.wernert@grafana.com>
26 lines
447 B
CUE
26 lines
447 B
CUE
package kinds
|
|
|
|
import (
|
|
"github.com/grafana/grafana/apps/alerting/rules/kinds/v0alpha1"
|
|
)
|
|
|
|
alertRuleKind: {
|
|
kind: "AlertRule"
|
|
pluralName: "AlertRules"
|
|
}
|
|
|
|
alertRulev0alpha1: alertRuleKind & {
|
|
schema: {
|
|
spec: v0alpha1.AlertRuleSpec
|
|
}
|
|
selectableFields: [
|
|
"spec.title",
|
|
"spec.paused",
|
|
"spec.panelRef.dashboardUID",
|
|
"spec.panelRef.panelID",
|
|
"spec.notificationSettings.receiver",
|
|
// TODO: add status fields for filtering
|
|
]
|
|
|
|
}
|