]> arthur.barton.de Git - nagcollect.git/blob - client/lib/tests/Darwin/DiskErrors.tst
Add support for nagcollectreset to tests/Darwin/DiskErrors.tst
[nagcollect.git] / client / lib / tests / Darwin / DiskErrors.tst
1 # NagCollect -- Nagios Data Collector for Passive Checks
2 # Copyright (c)2010 Alexander Barton, alex@barton.de
3
4 # Check disks for I/O errors
5
6 SERVICE="Disks_p"
7
8 offset=`LC_ALL=C grep -b "BOOT_TIME:" /var/log/system.log \
9  | tail -n 1 | cut -d':' -f1`
10 [ -n "$offset" ] || offset=`LC_ALL=C grep -b -- --NagiosReset-- \
11  /var/log/system.log | tail -n 1 | cut -d':' -f1`
12 if [ -n "$offset" ]; then
13         # reboot detected in system.log
14         error=`LC_ALL=C tail -c "+$offset" /var/log/system.log \
15          | grep -i "I/O" | grep -i error | grep -v nagcollect | tail -n 1`
16 else
17         # no reboot detected in system.log
18         error=`LC_ALL=C grep -i "I/O" /var/log/system.log \
19          | grep -i error | grep -v nagcollect | tail -n 1`
20 fi
21 if [ -n "$error" ]; then
22         msg=`echo $error | cut -d' ' -f6-`
23         STATUS=2
24         TEXT="ERROR - $msg"
25 else
26         STATUS=0
27         TEXT="OK - No I/O errors detected."
28 fi