prometheus: Reword CominDeploymentCommitMismatch rule

This commit is contained in:
SebastianStork 2026-03-03 23:39:35 +01:00
parent 67d3b8ca50
commit 708ea29531
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q

View file

@ -104,12 +104,12 @@ in
}; };
} }
{ {
alert = "CominDeploymentDifferentCommits"; alert = "CominDeploymentCommitMismatch";
expr = "count(count by (commit_id) (comin_deployment_info)) > 1"; expr = "count(count by (commit_id) (comin_deployment_info)) > 1";
for = "10m"; for = "10m";
annotations = { annotations = {
summary = "Comin commit mismatch"; summary = "Hosts are running different commits";
description = "Two or more comin deployments are on different commits."; description = "Not all hosts are running the same git commit, which may indicate a failed deployment and could lead to incompatible configurations.";
}; };
} }
]; ];