2015-01-28 15:10:44 +00:00
#!/bin/bash
# Munin: resource monitoring tool
#################################################
source setup/functions.sh # load our functions
source /etc/mailinabox.conf # load global vars
# install Munin
2015-08-19 19:58:35 +00:00
echo "Installing Munin (system monitoring)..."
2016-01-14 04:55:45 +00:00
apt_install munin munin-node libcgi-fast-perl
# libcgi-fast-perl is needed by /usr/lib/munin/cgi/munin-cgi-graph
2015-01-28 15:10:44 +00:00
# edit config
cat > /etc/munin/munin.conf <<EOF;
2015-05-25 17:01:53 +00:00
dbdir /var/lib/munin
htmldir /var/cache/munin/www
logdir /var/log/munin
rundir /var/run/munin
tmpldir /etc/munin/templates
includedir /etc/munin/munin-conf.d
2016-01-14 03:20:33 +00:00
# path dynazoom uses for requests
cgiurl_graph /admin/munin/cgi-graph
2015-05-25 17:01:53 +00:00
# a simple host tree
[ $PRIMARY_HOSTNAME ]
address 127.0.0.1
# send alerts to the following address
contacts admin
contact.admin.command mail -s " Munin notification ${ var : host } " administrator@$PRIMARY_HOSTNAME
contact.admin.always_send warning critical
2015-01-28 15:10:44 +00:00
EOF
2016-01-14 04:55:45 +00:00
# The Debian installer touches these files and chowns them to www-data:adm for use with spawn-fcgi
chown munin. /var/log/munin/munin-cgi-html.log
chown munin. /var/log/munin/munin-cgi-graph.log
2015-07-22 21:01:17 +00:00
# ensure munin-node knows the name of this machine
tools/editconf.py /etc/munin/munin-node.conf -s \
host_name = $PRIMARY_HOSTNAME
2015-08-23 16:03:40 +00:00
# Update the activated plugins through munin's autoconfiguration.
munin-node-configure --shell --remove-also 2>/dev/null | sh
# Deactivate monitoring of NTP peers. Not sure why anyone would want to monitor a NTP peer. The addresses seem to change
# (which is taken care of my munin-node-configure, but only when we re-run it.)
2015-10-10 16:48:49 +00:00
find /etc/munin/plugins/ -lname /usr/share/munin/plugins/ntp_ -print0 | xargs -0 /bin/rm -f
2015-08-23 16:03:40 +00:00
# Deactivate monitoring of network interfaces that are not up. Otherwise we can get a lot of empty charts.
for f in $( find /etc/munin/plugins/ \( -lname /usr/share/munin/plugins/if_ -o -lname /usr/share/munin/plugins/if_err_ -o -lname /usr/share/munin/plugins/bonding_err_ \) ) ; do
IF = $( echo $f | sed s/.*_//) ;
if ! ifquery $IF >/dev/null 2>/dev/null; then
rm $f ;
fi ;
done
# Create a 'state' directory. Not sure why we need to do this manually.
mkdir -p /var/lib/munin-node/plugin-state/
# Restart services.
restart_service munin
restart_service munin-node
2015-05-25 17:01:53 +00:00
# generate initial statistics so the directory isn't empty
2015-08-23 16:42:39 +00:00
# (We get "Pango-WARNING **: error opening config file '/root/.config/pango/pangorc': Permission denied"
# if we don't explicitly set the HOME directory when sudo'ing.)
sudo -H -u munin munin-cron