Files
grafana/apps/alerting/rules/kinds/alertRule.cue
T
Moustafa Baiou 0a85a30642 Alerting: Define rules.alerting.grafana.app/v0alpha1 AlertRule and RecordingRule
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>
2025-09-10 09:30:56 -04:00

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
]
}