scripts/xymon/plugins/client/ext/smart

62 lines
1.5 KiB
Plaintext
Raw Normal View History

#!/bin/sh
# NOTE: Must be run as root, so you probably need to setup sudo for this.
if test -f /tmp/dres; then rm -f /tmp/dres; fi
2020-02-19 16:00:36 +01:00
if test -f /tmp/dscan; then rm -f /tmp/dscan; fi
2020-02-19 16:00:36 +01:00
# Get the list of all available devices
2020-02-19 11:18:25 +01:00
smartctl --scan > /tmp/dscan
2020-02-19 16:00:36 +01:00
while IFS= read -r LINE; do
## Get device and type
2020-02-19 11:18:25 +01:00
DISK=$(echo "${LINE}" | cut -d" " -f1)
TYPE=$(echo "${LINE}" | cut -d" " -f3)
2020-02-19 16:00:36 +01:00
## Get SMART Health Status and return code
DRES=$(/usr/sbin/smartctl -H -d "${TYPE}" -n standby "${DISK}")
DCODE=$?
DSTBY=$(( DCODE & 2 ))
DFAIL=$(( DCODE & 8 ))
DWARN=$(( DCODE & 32 ))
2020-02-19 16:00:36 +01:00
## Give a weight to each to color to easily get the page status
if test $DSTBY -ne 0
then
COLOR="4&clear"
elif test $DFAIL -ne 0
then
COLOR="1&red"
elif test $DWARN -ne 0
then
COLOR="2&yellow"
else
COLOR="3&green"
fi
2020-02-19 11:18:25 +01:00
echo "${COLOR} $DISK ${TYPE}"
2020-02-19 11:18:25 +01:00
echo "${COLOR} $DISK ${TYPE}" | cut -c2- >>/tmp/dres
echo "" >>/tmp/dres
2020-02-19 16:00:36 +01:00
echo "$DRES" | grep -v -E "^smartctl|^Copyright|^$|^===" >>/tmp/dres
echo "------------------------------------------------------------" >>/tmp/dres
echo "" >>/tmp/dres
echo "" >>/tmp/dres
2020-02-19 11:18:25 +01:00
done < /tmp/dscan >/tmp/dcheck
2020-02-19 16:00:36 +01:00
# Set the global color according to the highest alert
COLOR=$(< /tmp/dcheck awk '{print $1}' | sort | uniq | head -1 | cut -c3-)
2020-02-19 16:00:36 +01:00
$XYMON "${XYMSRV}" "status ${MACHINE}.smart ${COLOR} SMART health check
$(< /tmp/dcheck cut -c2-)
==================== Detailed status ====================
$(cat /tmp/dres)
"
2020-02-19 11:18:25 +01:00
rm -f /tmp/dres /tmp/dcheck /tmp/dscan
exit 0