1
0
mirror of https://github.com/opinkerfi/nagios-plugins.git synced 2026-02-06 07:05:17 +01:00

check_dataprotector added

This commit is contained in:
Páll Guðjón Sigurðsson
2010-03-01 22:09:31 +00:00
parent 36e96ec1d0
commit 7e0aef04d5
7 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#!/bin/sh
#/opt/omni/bin/omnirpt -report db_size
echo $USER > /tmp/check_dp_tablespace.debug
echo $@ >> /tmp/check_dp_tablespace.debug
OUTPUT=$(/opt/omni/bin/omnirpt -report db_size)
RESULT=$?
if [ $RESULT -gt 0 ]; then
echo -n $OUTPUT
exit 1
fi
echo $OUTPUT | grep -q "No database devices with low disk space."
RESULT=$?
if [ $RESULT -gt 0 ]; then
echo "Warning - Some dataprotector tablespaces are running low"
exit 1
else
echo "OK - No database devices with low disk space."
exit 0
fi