Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the job to run promtool check on rules #102

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .github/workflows/pre-commit-hook.yaml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/run-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: run-checks

on:
pull_request:
branches:
- main

jobs:
run-checks:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read

steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install packages
run: |
sudo apt-get update
sudo apt-get -y install gettext git
- name: Install Promtool
run: |
PROM_VERSION=$(curl -s https://api.github.com/repos/prometheus/prometheus/releases/latest | jq -r .tag_name)
wget https://github.com/prometheus/prometheus/releases/download/${PROM_VERSION}/prometheus-${PROM_VERSION#"v"}.linux-amd64.tar.gz
tar -xvf prometheus-${PROM_VERSION#"v"}.linux-amd64.tar.gz
sudo mv prometheus-${PROM_VERSION#"v"}.linux-amd64/promtool /usr/local/bin/
rm -rf prometheus-${PROM_VERSION}.linux-amd64 prometheus-${PROM_VERSION}.linux-amd64.tar.gz
- name: Run ./check-rules script
run: ./scripts/check-rules
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ hooks-install:
-rm .git/hooks/pre-commit
(cd .git/hooks/ && ln -s ../../scripts/pre-commit pre-commit)

hooks-pre-commit-run:
@GIT_CMD="git diff --name-only --cached --diff-filter=d origin/main" \
hooks-check-rules-run:
@GIT_CMD="git diff --name-only --diff-filter=d origin/main" \
./scripts/pre-commit
27 changes: 27 additions & 0 deletions scripts/check-rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash

# Redirect output to stderr.
exec 1>&2

EXIT_CODE=0

# List of changed files, excluding deleted ones
if [[ -z "${GIT_CMD}" ]]; then
GIT_CMD="git diff --name-only --cached --diff-filter=d"
else
GIT_CMD=${GIT_CMD}
fi

FILES=$(${GIT_CMD})

for f in ${FILES}; do
# https://askubuntu.com/a/926695
if [[ $(head -1 "${f}" | tr '\0' '\n') =~ "PROMETHEUS RULES" ]]; then
NODE_ROLL_WINDOW=5m ENVIRONMENT=local PROVIDER=local envsubst '$NODE_ROLL_WINDOW,$ENVIRONMENT,$PROVIDER' < ${f} | promtool check rules
if [ $? -ne 0 ]; then
EXIT_CODE=1
fi
fi
done

exit $EXIT_CODE
56 changes: 2 additions & 54 deletions scripts/pre-commit
Original file line number Diff line number Diff line change
@@ -1,60 +1,8 @@
#!/bin/bash

# Redirect output to stderr.
exec 1>&2

exit_code=0

# List of changed files, excluding deleted ones

if [[ -z "${GIT_CMD}" ]]; then
GIT_CMD="git diff --name-only --cached --diff-filter=d"
else
GIT_CMD=${GIT_CMD}
fi

PROM_VERSION="v2.47.0"

function is_yaml_extension() {
local file=$1
if [[ "${file}" == *yaml || "${file}" == *yml || "${file}" == *yaml.tmpl || "${file}" == *yml.tmpl ]]; then
return 0
fi

return 1
}

function is_valid_yaml() {
local file=$1
if is_yaml_extension "${file}"; then
if yq -v "${file}" ; then
return 0
fi
exit_code=1
fi

return 1
}

# Check alerts
function check_alerts() {
local files=$(${GIT_CMD})
for f in ${files}
do
if is_valid_yaml "${f}"; then
if [[ $(head -1 "${f}") =~ "PROMETHEUS RULES" ]]; then
docker run -i --entrypoint promtool -v $PWD/${f}:$PWD/${f} docker.io/prom/prometheus:${PROM_VERSION} check rules $PWD/${f} &> /dev/null
if [ $? -ne 0 ]; then
echo "err: Found misconfigured alerts staged in ${f}"
docker run -i --entrypoint promtool -v $PWD/${f}:$PWD/${f} docker.io/prom/prometheus:${PROM_VERSION} check rules $PWD/${f}
exit_code=1
fi
fi
fi
done
}

# checks
check_alerts
./scripts/check-rules
test $? -eq 0 || exit_code=1

exit ${exit_code}