check_qnap_health: Update to latest version

This commit is contained in:
Jan Wagner 2022-12-01 16:09:55 +00:00
parent 685fadac6c
commit f9ed6fdc3d

View file

@ -6,6 +6,7 @@
############################# finetuning by vitamin.b@mailbox.org
############################# with code by Tom Lesniak and Hugo Geijteman
############################# with code by Carsten Koebke
############################# with code by sgruber
#
# copyright (c) 2008 Shahid Iqbal
# This program is free software; you can redistribute it and/or modify
@ -596,6 +597,7 @@ elif [ "$strPart" == "lunstatus" ]; then
PERFOUTPUT=""
WARNING=0
CRITICAL=0
lunDISABLEDCOUNT=0
lun=1
lunCOUNT="$(_snmpwalk .1.3.6.1.4.1.24681.1.4.1.1.2.1.10.2.1.2 | wc -l)"
@ -609,6 +611,7 @@ elif [ "$strPart" == "lunstatus" ]; then
lunSTAT="OK($lun_Status)"
else
lunSTAT="CRITICAL($lun_Status)"
lunDISABLEDCOUNT=$((lunDISABLEDCOUNT+1))
CRITICAL=1
fi
@ -646,7 +649,10 @@ elif [ "$strPart" == "lunstatus" ]; then
done
if [ -z "$ALLOUTPUT" ]; then
ALLOUTPUT="OK: All luns are fine."
ALLOUTPUT="OK: All $lunCOUNT luns are fine."
if [ $lunDISABLEDCOUNT -ne 0 ]; then
ALLOUTPUT="CRITICAL: $lunDISABLEDCOUNT of $lunCOUNT luns are disabled."
fi
fi
echo "$ALLOUTPUT| $PERFOUTPUT"
@ -672,7 +678,7 @@ elif [ "$strPart" == "volstatus" ]; then
while [ "$VOL" -le "$VOLCOUNT" ]; do
Vol_Status="$(_snmpgetval ".1.3.6.1.4.1.24681.1.2.17.1.6.$VOL" | sed 's/^"\(.*\).$/\1/')"
if [ "$Vol_Status" != "No Such Instance currently exists at this OID" ]; then
if [ "$Vol_Status" == "Ready" ]; then
VOLSTAT="OK: $Vol_Status"
elif [ "$Vol_Status" == "Rebuilding..." ]; then
@ -733,7 +739,7 @@ elif [ "$strPart" == "volstatus" ]; then
PERFOUTPUT="$PERFOUTPUT "
fi
PERFOUTPUT="${PERFOUTPUT}FreeSize_Volume-$VOL=${volFreePct}%;$strWarning;$strCritical;0;100"
fi
VOL="`expr $VOL + 1`"
done