Last active
April 29, 2023 13:42
-
-
Save navicore/15d1e2ef4cc8749692c45889071a5922 to your computer and use it in GitHub Desktop.
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/bash | |
# Check if yq is installed | |
if ! command -v yq &> /dev/null; then | |
echo "yq is not installed. Please install it first." | |
exit 1 | |
fi | |
# Initialize the CSV header | |
echo "alert,team,severity,filename" | |
# Find all the matching files and process them | |
find . -type f -iname "telemetry*.yaml" | while read -r file; do | |
# Check if the file has any alerts | |
has_alerts=$(yq e '.charts[] | select(.values.prometheusrule.spec.groups[].rules[].alert != null) | true' "$file" 2>/dev/null) | |
# Only process the file if it has alerts | |
if [ "$has_alerts" = "true" ]; then | |
num_groups=$(yq e '.charts[].values.prometheusrule.spec.groups | length' "$file") | |
for ((i = 0; i < num_groups; i++)); do | |
num_rules=$(yq e '.charts[].values.prometheusrule.spec.groups['$i'].rules | length' "$file") | |
for ((j = 0; j < num_rules; j++)); do | |
rule=$(yq e '.charts[].values.prometheusrule.spec.groups['$i'].rules['$j']' "$file") | |
if [ "$(echo "$rule" | yq e '.alert' -)" != "null" ]; then | |
alert=$(echo "$rule" | yq e '.alert' -) | |
team=$(echo "$rule" | yq e '.labels.team' -) | |
severity=$(echo "$rule" | yq e '.labels.severity' -) | |
echo "\"$alert\",\"$team\",\"$severity\",\"$file\"" | |
fi | |
done | |
done | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment