Last active
December 3, 2024 17:46
-
-
Save alexpovel/30f35f3258119eca1df582727fcabb67 to your computer and use it in GitHub Desktop.
[CUE](https://cuelang.org/) vetting demo for embedded YAML (YAML serialized as a string in outer YAML, in this case Prometheus Alertmanager rules inside a Kubernetes ConfigMap resource)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cue vet sample.cue sample.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "encoding/yaml" | |
#AlertRules: { | |
groups: [...#Group] | |
} | |
#Group: { | |
name: string | |
rules: [...#Rule] | |
} | |
// Duration format: number + unit | |
#DurationString: string & =~"^\\d+[smh]$" | |
#Rule: { | |
alert: =~"\\w{10,20}" | |
expr: string | |
for?: #DurationString | |
labels: { | |
severity: "critical" | "warning" | "info" | |
[string]: string | |
} | |
annotations: { | |
summary: string | |
description: string | |
[string]: string | |
} | |
} | |
// This looks at any actual, concrete `data` key, and validates the serialized YAML. | |
// See also https://cuelang.org/docs/concept/how-cue-works-with-yaml/#validating-embedded-yaml | |
data: [string]: yaml.Validate(#AlertRules) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: alertmanager-rules | |
namespace: monitoring | |
labels: | |
app: prometheus | |
data: | |
custom-alerts.yaml: | | |
groups: | |
- name: application.rules | |
rules: | |
- alert: HighErrorRate | |
expr: | | |
sum(rate(http_requests_total{status=~"5.."}[5m])) | |
/ | |
sum(rate(http_requests_total[5m])) * 100 > 5 | |
for: 15m | |
labels: | |
severity: critical | |
team: platform | |
annotations: | |
summary: High HTTP error rate detected | |
description: "Error rate is {{ $value }}% for the last 15 minutes (threshold: 5%)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment