Skip to content

Commit 7470b35

Browse files
authored
Minor formatting changes
1 parent 46165dc commit 7470b35

File tree

1 file changed

+34
-28
lines changed

1 file changed

+34
-28
lines changed

smart_report.sh

+34-28
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ if [ $SATA_count -gt 0 ]; then
9797
(
9898
echo "########## SMART status report summary for all SATA drives on server ${freenashost} ##########"
9999
echo ""
100-
echo "+------+------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
101-
echo "|Device|Serial |Temp| Power|Start|Spin |ReAlloc|Current|Offline |Seek |Total |High | Command|Last|"
102-
echo "| |Number | | On |Stop |Retry|Sectors|Pending|Uncorrec|Errors|Seeks |Fly | Timeout|Test|"
103-
echo "| | | | Hours|Count|Count| |Sectors|Sectors | | |Writes| Count |Age |"
104-
echo "+------+------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
100+
echo "+-------+------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
101+
echo "|Device |Serial |Temp| Power|Start|Spin |ReAlloc|Current|Offline |Seek |Total |High | Command|Last|"
102+
echo "| |Number | | On |Stop |Retry|Sectors|Pending|Uncorrec|Errors|Seeks |Fly | Timeout|Test|"
103+
echo "| | | | Hours|Count|Count| |Sectors|Sectors | | |Writes| Count |Age |"
104+
echo "+-------+------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
105105
) >> "$logfile"
106106

107107
###### Detail information for each SATA drive ######
@@ -146,14 +146,14 @@ if [ $SATA_count -gt 0 ]; then
146146
if (testAge > testAgeWarn) testAge=testAge"*"
147147
if (hiFlyWr == "") hiFlyWr="N/A";
148148
if (cmdTimeout == "") cmdTimeout="N/A";
149-
printf "|%-6s|%-24s|%-4s|%6s|%5s|%5s|%7s|%7s|%8s|%6s|%10s|%6s|%11s|%4s|\n",
149+
printf "|%-7s|%-24s|%-4s|%6s|%5s|%5s|%7s|%7s|%8s|%6s|%10s|%6s|%11s|%4s|\n",
150150
device, serial, temp, onHours, startStop, spinRetry, reAlloc, pending, offlineUnc,
151151
seekErrors, totalSeeks, hiFlyWr, cmdTimeout, testAge;
152152
}'
153153
) >> "$logfile"
154154
done
155155
(
156-
echo "+------+------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
156+
echo "+-------+------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
157157
) >> "$logfile"
158158
fi
159159

@@ -166,42 +166,48 @@ if [ $SAS_count -gt 0 ]; then
166166

167167
echo "########## SMART status report summary for all SAS drives on server ${freenashost} ##########"
168168
echo ""
169-
echo "+------+------------------------+----+-----+------+------+------+------+------+------+"
170-
echo "|Device|Serial |Temp|Start|Load |Defect|Uncorr|Uncorr|Uncorr|Non |"
171-
echo "| |Number | |Stop |Unload|List |Read |Write |Verify|Medium|"
172-
echo "| | | |Count|Count |Elems |Errors|Errors|Errors|Errors|"
173-
echo "+------+------------------------+----+-----+------+------+------+------+------+------+"
169+
echo "+-------+------------------------+----+------+-----+------+------+------+------+------+------+----+"
170+
echo "|Device |Serial |Temp| Power|Start|Load |Defect|Uncorr|Uncorr|Uncorr|Non |Last|"
171+
echo "| |Number | | On |Stop |Unload|List |Read |Write |Verify|Medium|Test|"
172+
echo "| | | | Hours|Count|Count |Elems |Errors|Errors|Errors|Errors|Age |"
173+
echo "+-------+------------------------+----+------+-----+------+------+------+------+------+------+----+"
174174
) >> "$logfile"
175175

176176
###### Detail information for each SAS drive ######
177177
for drive in $SAS_list; do
178178
(
179179
devid=$(basename "$drive")
180-
"$smartctl" -a "$drive" | \
180+
lastTestHours=$("$smartctl" -l selftest "$drive" | grep "# 1" | awk '{print $7}')
181+
"$smartctl" -x "$drive" | \
181182
awk -v device="$devid" -v tempWarn="$tempWarn" -v tempCrit="$tempCrit" \
182-
-v warnSymbol="$warnSymbol" -v critSymbol="$critSymbol" '\
183+
-v warnSymbol="$warnSymbol" -v critSymbol="$critSymbol" \
184+
-v lastTestHours="$lastTestHours" -v testAgeWarn="$testAgeWarn" '
183185
/Serial number:/{serial=$3}
184-
/Current Drive Temperature:/{temp=$4} \
185-
/start-stop cycles:/{startStop=$4} \
186-
/load-unload cycles:/{loadUnload=$4} \
187-
/grown defect list:/{defectList=$6} \
188-
/read:/{readErrors=$8} \
189-
/write:/{writeErrors=$8} \
190-
/verify:/{verifyErrors=$8} \
191-
/Non-medium error count:/{nonMediumErrors=$4} \
186+
/Current Drive Temperature:/{temp=$4}
187+
/start-stop cycles:/{startStop=$4}
188+
/load-unload cycles:/{loadUnload=$4}
189+
/grown defect list:/{defectList=$6}
190+
/read:/{readErrors=$8}
191+
/write:/{writeErrors=$8}
192+
/verify:/{verifyErrors=$8}
193+
/Non-medium error count:/{nonMediumErrors=$4}
194+
/Accumulated power on time/{split($6,a,":");sub(/h/,"",a[1]);onHours=a[1];}
192195
END {
196+
testAge=sprintf("%.0f", (onHours - lastTestHours) / 24);
193197
if (temp > tempCrit)
194-
device=device " " critSymbol;
195-
else if (temp > tempWarn)
198+
device=device " " critSymbol;
199+
else if (temp > tempWarn || testAge > testAgeWarn)
196200
device=device " " warnSymbol;
197-
printf "|%-6s|%-24s| %3s|%5s|%6s|%6s|%6s|%6s|%6s|%6s|\n",
198-
device, serial, temp, startStop, loadUnload, defectList, \
199-
readErrors, writeErrors, verifyErrors, nonMediumErrors;
201+
if (testAge > testAgeWarn) testAge=testAge"*"
202+
if (defectList > 0) defectList=defectList"*"
203+
printf "|%-7s|%-24s| %3s|%6s|%5s|%6s|%6s|%6s|%6s|%6s|%6s|%4s|\n",
204+
device, serial, temp, onHours, startStop, loadUnload, defectList, \
205+
readErrors, writeErrors, verifyErrors, nonMediumErrors,testAge;
200206
}'
201207
) >> "$logfile"
202208
done
203209
(
204-
echo "+------+------------------------+----+-----+------+------+------+------+------+------+"
210+
echo "+-------+------------------------+----+------+-----+------+------+------+------+------+------+----+"
205211
) >> "$logfile"
206212
fi
207213

0 commit comments

Comments
 (0)