| Server IP : 172.67.157.124 / Your IP : 216.73.216.213 Web Server : LiteSpeed System : Linux s12482.usc1.stableserver.net 5.14.0-570.32.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 6 11:30:41 EDT 2025 x86_64 User : snownico ( 1231) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib64/nagios/plugins/ |
Upload File : |
#!/bin/bash
# check_proxmox - check proxmox core services and statuses
# Requirements:
# Author: Tsvetan Gerov <[email protected]>
# Version 0.1
# Initialize flags and error message
CRTIICAL=false
WARNING=false
ERROR_MESSAGE=""
check_pveproxy(){
if ! systemctl is-active pveproxy >/dev/null 2>&1; then
CRTIICAL=true
ERROR_MESSAGE+="PVE Proxy is down, "
fi
}
check_cluster(){
CSTATUS=$(pvesh get /cluster/status --output-format=yaml | grep quorate | awk '{print$2}')
if [ "$CSTATUS" != "1" ]; then
CRTIICAL=true
ERROR_MESSAGE+="Check Cluster Quorum, "
fi
}
# Perform checks
check_pveproxy
check_cluster
# Return final state
if [ "$CRTIICAL" = true ]; then
echo "[CRTIICAL] ${ERROR_MESSAGE%, }"
exit 2
elif [ "$WARNING" = true ]; then
echo "[WARNING] ${ERROR_MESSAGE%, }"
exit 1
else
echo "[OK] All services are running correctly."
exit 0
fi