-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: run unit tests for metrics rules
Added metrics unit tests file and a Makefile target to run the tests. Signed-off-by: Andrej Krejcir <[email protected]>
- Loading branch information
Showing
4 changed files
with
110 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env bash | ||
|
||
readonly PROMTOOL="$(dirname "$0")/../bin/promtool" | ||
|
||
function cleanup() { | ||
local cleanup_dir="${1:?}" | ||
rm -rf "${cleanup_dir}" | ||
} | ||
|
||
function main() { | ||
local prom_spec_dumper="${1:?}" | ||
local tests_file="${2:?}" | ||
local temp_dir | ||
|
||
temp_dir="$(mktemp --tmpdir --directory metrics_test_dir.XXXXX)" | ||
trap "cleanup ${temp_dir}" RETURN EXIT INT | ||
|
||
local rules_file="${temp_dir}/rules.json" | ||
local tests_copy="${temp_dir}/rules-test.yaml" | ||
|
||
"${prom_spec_dumper}" > "${rules_file}" | ||
cp "${tests_file}" "${tests_copy}" | ||
|
||
echo "INFO: Rules file content:" | ||
cat "${rules_file}" | ||
echo | ||
|
||
${PROMTOOL} check rules "${rules_file}" | ||
${PROMTOOL} test rules "${tests_copy}" | ||
} | ||
|
||
main "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Unit tests for the prometheus rules | ||
rule_files: | ||
- rules.json | ||
|
||
tests: | ||
- interval: "1m" | ||
input_series: | ||
- series: 'up{pod="ssp-operator-12345"}' | ||
values: '0x5 1' | ||
|
||
alert_rule_test: | ||
- eval_time: "5m" | ||
alertname: "SSPDown" | ||
exp_alerts: | ||
- exp_annotations: | ||
summary: "All SSP operator pods are down." | ||
runbook_url: "test-runbook:SSPDown" | ||
exp_labels: | ||
severity: "critical" | ||
operator_health_impact: "critical" | ||
kubernetes_operator_part_of: "kubevirt" | ||
kubernetes_operator_component: "ssp-operator" | ||
|
||
- eval_time: "6m" | ||
alertname: "SSPDown" | ||
exp_alerts: [] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package main | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"os" | ||
|
||
promv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1" | ||
|
||
"kubevirt.io/ssp-operator/pkg/monitoring/rules" | ||
) | ||
|
||
func main() { | ||
const runbookTemplate = "test-runbook:%s" | ||
|
||
allRules := append(rules.RecordRules(), rules.AlertRules(runbookTemplate)...) | ||
|
||
spec := promv1.PrometheusRuleSpec{ | ||
Groups: []promv1.RuleGroup{{ | ||
Name: "test.rules", | ||
Rules: allRules, | ||
}}, | ||
} | ||
|
||
encoder := json.NewEncoder(os.Stdout) | ||
encoder.SetIndent("", " ") | ||
err := encoder.Encode(spec) | ||
if err != nil { | ||
fmt.Fprintf(os.Stderr, "Error encoding prometheus spec: %v", err) | ||
os.Exit(1) | ||
} | ||
} |