@@ -97,11 +97,11 @@ if [ $SATA_count -gt 0 ]; then
97
97
(
98
98
echo " ########## SMART status report summary for all SATA drives on server ${freenashost} ##########"
99
99
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 " +------- +------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
105
105
) >> " $logfile "
106
106
107
107
# ##### Detail information for each SATA drive ######
@@ -146,14 +146,14 @@ if [ $SATA_count -gt 0 ]; then
146
146
if (testAge > testAgeWarn) testAge=testAge"*"
147
147
if (hiFlyWr == "") hiFlyWr="N/A";
148
148
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",
150
150
device, serial, temp, onHours, startStop, spinRetry, reAlloc, pending, offlineUnc,
151
151
seekErrors, totalSeeks, hiFlyWr, cmdTimeout, testAge;
152
152
}'
153
153
) >> " $logfile "
154
154
done
155
155
(
156
- echo " +------+------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
156
+ echo " +------- +------------------------+----+------+-----+-----+-------+-------+--------+------+----------+------+-----------+----+"
157
157
) >> " $logfile "
158
158
fi
159
159
@@ -166,42 +166,48 @@ if [ $SAS_count -gt 0 ]; then
166
166
167
167
echo " ########## SMART status report summary for all SAS drives on server ${freenashost} ##########"
168
168
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 " +------- +------------------------+----+------ +-----+------ +------+------+------+------+------+ ----+"
174
174
) >> " $logfile "
175
175
176
176
# ##### Detail information for each SAS drive ######
177
177
for drive in $SAS_list ; do
178
178
(
179
179
devid=$( basename " $drive " )
180
- " $smartctl " -a " $drive " | \
180
+ lastTestHours=$( " $smartctl " -l selftest " $drive " | grep " # 1" | awk ' {print $7}' )
181
+ " $smartctl " -x " $drive " | \
181
182
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 " '
183
185
/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];}
192
195
END {
196
+ testAge=sprintf("%.0f", (onHours - lastTestHours) / 24);
193
197
if (temp > tempCrit)
194
- device=device " " critSymbol;
195
- else if (temp > tempWarn)
198
+ device=device " " critSymbol;
199
+ else if (temp > tempWarn || testAge > testAgeWarn )
196
200
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;
200
206
}'
201
207
) >> " $logfile "
202
208
done
203
209
(
204
- echo " +------+------------------------+----+-----+------ +------+------+------+------+------+"
210
+ echo " +------- +------------------------+----+------ +-----+------ +------+------+------+------+------+ ----+"
205
211
) >> " $logfile "
206
212
fi
207
213
0 commit comments