diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-07-17 12:14:32 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-07-17 12:14:32 +0000 |
commit | 0a88a3050e9421b1bf4e88506f320a9e8cd1568b (patch) | |
tree | 0761e954a0768c1419d2fc500f59108042c615a3 /plugins-scripts/check_oracle.sh | |
parent | 325858115efe2d75d60a7cd31d09a6a5f34e4de4 (diff) | |
download | monitoring-plugins-0a88a3050e9421b1bf4e88506f320a9e8cd1568b.tar.gz |
- Cleanup comments
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@593 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts/check_oracle.sh')
-rwxr-xr-x | plugins-scripts/check_oracle.sh | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/plugins-scripts/check_oracle.sh b/plugins-scripts/check_oracle.sh index ba15dc85..85425557 100755 --- a/plugins-scripts/check_oracle.sh +++ b/plugins-scripts/check_oracle.sh @@ -3,21 +3,8 @@ # latigid010@yahoo.com # 01/06/2000 # -# This Nagios plugin was created to check remote or local TNS -# status and check local Database status. +# This Nagios plugin was created to check Oracle status # -# Add the following lines to your object config file (i.e. commands.cfg) -# command[check-tns]=/usr/local/nagios/libexec/check_ora 1 $ARG$ -# command[check-oradb]=/usr/local/nagios/libexec/check_ora 2 $ARG$ -# -# -# Usage: -# To check TNS Status: ./check_ora 1 <Oracle Sid or Hostname/IP address> -# To Check local database: ./check_ora 2 <ORACLE_SID> -# -# I have the script checking for the Oracle PMON process and -# the sgadefORACLE_SID.dbf file. -# PROGNAME=`basename $0` PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'` @@ -43,14 +30,14 @@ print_help() { echo "" print_usage echo "" - echo "Check remote or local TNS status and check local Database status" + echo "Check Oracle status" echo "" - echo "--tns=SID/IP Address" + echo "--tns SID/IP Address" echo " Check remote TNS server" - echo "--db=SID" + echo "--db SID" echo " Check local database (search /bin/ps for PMON process) and check" echo " filesystem for sgadefORACLE_SID.dbf" - echo "--login=SID" + echo "--login SID" echo " Attempt a dummy login and alert if not ORA-01017: invalid username/password" echo "--cache" echo " Check local database for library and buffer cache hit ratios" @@ -60,7 +47,7 @@ print_help() { echo " Check local database for tablespace capacity in ORACLE_SID" echo " ---> Requires Oracle user/password specified." echo " ---> Requires select on dba_data_files and dba_free_space" - echo "--oranames=Hostname" + echo "--oranames Hostname" echo " Check remote Oracle Names server" echo "--help" echo " Print this help screen" @@ -71,7 +58,7 @@ print_help() { echo "variable is set, that ORACLE_HOME/bin is in your PATH, and the" echo "tnsnames.ora file is locatable and is properly configured." echo "" - echo "When checking Local Database status your ORACLE_SID is case sensitive." + echo "When checking local database status your ORACLE_SID is case sensitive." echo "" echo "If you want to use a default Oracle home, add in your oratab file:" echo "*:/opt/app/oracle/product/7.3.4:N" |