diff options
-rw-r--r-- | README | 23 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 22 insertions, 2 deletions
@@ -1,11 +1,30 @@ -Design draft - sitesummary =========== More information is available from <URL: http://wiki.debian.org/DebianEdu/HowTo/SiteSummary >. +Sitesummary generated Nagios configuration +------------------------------------------ + +Since version 0.0.51, there is experimental code in sitesummary to +generate Nagios configuration based on the collected information. To +enable this, install nagios3 and nagios-plugins-standard, edit +/etc/default/nagios3 to include +'NAGIOSCFG=/etc/nagios3/sitesummary.cfg' and run the sitesummary cron +job. These commands as root should do the trick. + + aptitude install nagios3 nagios-plugins-standard + echo 'NAGIOSCFG="/etc/nagios3/sitesummary.cfg"' >> /etc/default/nagios3 + /etc/cron.daily/sitesummary + /etc/init.d/nagios3 restart + +The current version of the code run all Nagios checks locally, so it +only work on a single machine. The plan is to change this to use NRPE +to work with a network of machines. + +Design draft +------------ system to collect key info about all the machines on a site, to help the sysadmin keep track of a lot of hosts. diff --git a/debian/changelog b/debian/changelog index 4e1f89e..04abd3f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ sitesummary (0.0.52) UNRELEASED; urgency=low * Change cron job to only reload nagios when the sitesummary generated nagios configuration is the active one. + * Document in the README how to enable the Nagios autoconfiguration. -- Petter Reinholdtsen <pere@debian.org> Thu, 07 Jan 2010 18:33:30 +0100 |