Hi,
Is there a data base query that can be constructed (or even a report available) that shows hosts and services checks that have been disabled? We have about 2500 hosts/15,000 service checks and many users. Some times users will disable notifications (rather than acknowledge alerts) by accident. It would be nice to run query to find out which checks have been disable...
Thanks
Disable Notifications query or report
Re: Disable Notifications query or report
This information can be pulled from the nagiosql db with;
Code: Select all
echo 'select host_name from tbl_host where notifications_enabled=0\G;' | mysql -uroot -pnagiosxi nagiosql
echo 'select service_description from tbl_service where notifications_enabled=0\G;' | mysql -uroot -pnagiosxi nagiosql
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: Disable Notifications query or report
sweet. gracias.
please close
please close