mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-04 17:43:46 +01:00
29 lines
504 B
Plaintext
29 lines
504 B
Plaintext
|
#!/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
|
||
|
|