Page 1 of 1

How to monitor Mountpoint In Aix Servers

Posted: Wed Aug 31, 2016 5:38 am
by gselvakumar
Hi Team,

Is there any plugin that can check mount points in AIX servers. It should compare the current file system mounted with the /etc/filesystem file and returns CRITICAL if some file system is not mounted.I had found one in nagios exchange but that is German language which is not helping me.Is there any thing other plugin apart from the one mentioned below.

https://exchange.nagios.org/directory/P ... sh/details


Thanks,
Gomathyshankar Selvakumar

Re: How to monitor Mountpoint In Aix Servers

Posted: Wed Aug 31, 2016 12:42 pm
by rkennedy
The plugin should still work, regardless of language, but you'll need to translate it. It's actually Spanish, not German.

I believe the lines below are the only ones that need to be changed.

Code: Select all

		echo " falsa alarma no tiene q estar montado"  > /dev/null
	else
		echo "$fs NO esta montado " >> ${WORK_DIR}/fs.txt.not.mounted
becomes -

Code: Select all

		echo " false alarm does not have to be mounted."  > /dev/null
	else
		echo "$fs is not mounted. " >> ${WORK_DIR}/fs.txt.not.mounted

Re: How to monitor Mountpoint In Aix Servers

Posted: Fri Sep 09, 2016 5:40 am
by gselvakumar
Is there any plugin that can check mount points in AIX servers. It should compare the current file system mounted with the /etc/filesystem file and returns CRITICAL if some file system is not mounted.

Re: How to monitor Mountpoint In Aix Servers

Posted: Fri Sep 09, 2016 9:32 am
by rkennedy
What issues did you run into with the initial plugin you posted? I showed you what needed to be changed so that it would output in english.