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
How to monitor Mountpoint In Aix Servers
-
gselvakumar
- Posts: 96
- Joined: Wed Mar 02, 2016 4:52 am
How to monitor Mountpoint In Aix Servers
Thanks & Regards,
Gomathyshankar Selvakumar
Gomathyshankar Selvakumar
Re: How to monitor Mountpoint In Aix Servers
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.
becomes -
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
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
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
Gomathyshankar Selvakumar
Re: How to monitor Mountpoint In Aix Servers
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