Home Directory

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Directory

sguibert

Reviews(2)
bysguibert, November 25, 2014
The plugins works good for IBM DS 3200 and IBM DS 3512.

A little correction, because when plugins retreive status, it show a warning about ds storage name.

Juste add option -quick to the command on check_IBM_DS_HEALTH.sh :

#RESULT=$($COMMAND $CTRLA_IP $CTRLB_IP -c "show storageSubsystem healthStatus;")
RESULT=$($COMMAND $CTRLA_IP $CTRLB_IP -c 'show storageSubsystem healthStatus;' -quick)

thanks to Dick Visser : https://wiki.terena.org/display/~federated-user-3/Installing+SMcli+on+Ubuntu+12.04
bysguibert, April 17, 2012
check_file_count
for a valid search without subdirectory you need to add "maxdepth 1" on line 219 :

else if [ $SUBS = "-s=no" -a $TYPE = "-t=file" ]; then
219 FILECOUNT=$(echo `find $TESTEDDIR -nowarn -maxdepth 1 -type f | wc -l`)
220 FILENUMBER=$FILECOUNT
221 DIRNUMBER="0"