]> arthur.barton.de Git - nagcollect.git/blob - client/lib/tests/Darwin/DiskErrors.tst
DiskErrors.tst: exclude false positive I/O error of mdworker
[nagcollect.git] / client / lib / tests / Darwin / DiskErrors.tst
1 # NagCollect -- Nagios Data Collector for Passive Checks
2 # Copyright (c)2010-2011 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 \
16          | grep -v "com.apple.mdworker.pool" | tail -n 1`
17 else
18         # no reboot detected in system.log
19         error=`LC_ALL=C grep -i "I/O" /var/log/system.log \
20          | grep -i error | grep -v nagcollect | tail -n 1`
21 fi
22 if [ -n "$error" ]; then
23         msg=`echo $error | cut -d' ' -f6-`
24         STATUS=2
25         TEXT="ERROR - $msg"
26 else
27         STATUS=0
28         TEXT="OK - No I/O errors detected."
29 fi