Nagcon is a console application interfacing to Nagios which gives you an overview of all services with troubled services.
GitHub: https://github.com/folkertvanheusden/NagCon
Add the following to /etc/services (all on the host 'x' where 'x' is your nagios server):
nagstat 33333/tcp # Nagios StatusAdd the following to /etc/inetd.conf:
nagstat stream tcp nowait root /usr/sbin/tcpd /usr/local/bin/nagios-statusand create /usr/local/bin/nagios-status:
#!/bin/sh /bin/cat /usr/local/nagios/var/status.logwhere /usr/local/nagios/var/status.log is the file as defined with 'status_file=' in nagios.cfg.
For contact info, see this page.