How to monitor Mountpoint In Aix Servers

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
gselvakumar
Posts: 96
Joined: Wed Mar 02, 2016 4:52 am

How to monitor Mountpoint In Aix Servers

Post 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
Thanks & Regards,
Gomathyshankar Selvakumar
rkennedy
Posts: 6579
Joined: Mon Oct 05, 2015 11:45 am

Re: How to monitor Mountpoint In Aix Servers

Post 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
Former Nagios Employee
gselvakumar
Posts: 96
Joined: Wed Mar 02, 2016 4:52 am

Re: How to monitor Mountpoint In Aix Servers

Post 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.
Thanks & Regards,
Gomathyshankar Selvakumar
rkennedy
Posts: 6579
Joined: Mon Oct 05, 2015 11:45 am

Re: How to monitor Mountpoint In Aix Servers

Post 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.
Former Nagios Employee
Locked