2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-10-15 01:16:10 +00:00
|
|
|
|
|
|
|
# TODO: support munin-async
|
|
|
|
# TODO: LWP/Pg perl libs aren't recognized
|
|
|
|
|
|
|
|
# TODO: support fastcgi
|
|
|
|
# http://munin-monitoring.org/wiki/CgiHowto2
|
|
|
|
# spawn-fcgi -s /var/run/munin/fastcgi-graph.sock -U www-data -u munin -g munin /usr/lib/munin/cgi/munin-cgi-graph
|
|
|
|
# spawn-fcgi -s /var/run/munin/fastcgi-html.sock -U www-data -u munin -g munin /usr/lib/munin/cgi/munin-cgi-html
|
|
|
|
# https://paste.sh/vofcctHP#-KbDSXVeWoifYncZmLfZzgum
|
|
|
|
# nginx http://munin.readthedocs.org/en/latest/example/webserver/nginx.html
|
|
|
|
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2013-10-15 01:16:10 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
nodeCfg = config.services.munin-node;
|
|
|
|
cronCfg = config.services.munin-cron;
|
|
|
|
|
|
|
|
muninPlugins = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "munin-available-plugins";
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out
|
|
|
|
|
|
|
|
cp --preserve=mode ${pkgs.munin}/lib/plugins/* $out/
|
|
|
|
|
|
|
|
for file in $out/*; do
|
|
|
|
case "$file" in
|
|
|
|
plugin.sh) continue;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# read magic makers from the file
|
|
|
|
family=$(sed -nr 's/.*#%#\s+family\s*=\s*(\S+)\s*/\1/p' $file)
|
|
|
|
cap=$(sed -nr 's/.*#%#\s+capabilities\s*=\s*(.+)/\1/p' $file)
|
|
|
|
|
|
|
|
wrapProgram $file \
|
2017-01-29 10:11:01 +00:00
|
|
|
--set PATH "/run/wrappers/bin:/run/current-system/sw/bin:/run/current-system/sw/bin" \
|
2013-10-15 01:16:10 +00:00
|
|
|
--set MUNIN_LIBDIR "${pkgs.munin}/lib" \
|
|
|
|
--set MUNIN_PLUGSTATE "/var/run/munin"
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2013-10-15 01:16:10 +00:00
|
|
|
# munin uses markers to tell munin-node-configure what a plugin can do
|
|
|
|
echo "#%# family=$family" >> $file
|
|
|
|
echo "#%# capabilities=$cap" >> $file
|
|
|
|
done
|
|
|
|
|
|
|
|
# NOTE: we disable disktstats because plugin seems to fail and it hangs html generation (100% CPU + memory leak)
|
|
|
|
rm -f $out/diskstats
|
|
|
|
'';
|
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
|
|
|
};
|
|
|
|
|
|
|
|
muninConf = pkgs.writeText "munin.conf"
|
|
|
|
''
|
|
|
|
dbdir /var/lib/munin
|
|
|
|
htmldir /var/www/munin
|
|
|
|
logdir /var/log/munin
|
|
|
|
rundir /var/run/munin
|
|
|
|
|
|
|
|
${cronCfg.extraGlobalConfig}
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2013-10-15 01:16:10 +00:00
|
|
|
${cronCfg.hosts}
|
|
|
|
'';
|
|
|
|
|
|
|
|
nodeConf = pkgs.writeText "munin-node.conf"
|
|
|
|
''
|
|
|
|
log_level 3
|
|
|
|
log_file Sys::Syslog
|
|
|
|
port 4949
|
|
|
|
host *
|
|
|
|
background 0
|
|
|
|
user root
|
|
|
|
group root
|
|
|
|
host_name ${config.networking.hostName}
|
|
|
|
setsid 0
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2013-10-15 01:16:10 +00:00
|
|
|
# wrapped plugins by makeWrapper being with dots
|
|
|
|
ignore_file ^\.
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2017-02-20 05:13:48 +00:00
|
|
|
allow ^::1$
|
2013-10-15 01:16:10 +00:00
|
|
|
allow ^127\.0\.0\.1$
|
|
|
|
|
|
|
|
${nodeCfg.extraConfig}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.munin-node = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Enable Munin Node agent. Munin node listens on 0.0.0.0 and
|
|
|
|
by default accepts connections only from 127.0.0.1 for security reasons.
|
|
|
|
|
2013-10-23 11:54:46 +00:00
|
|
|
See <link xlink:href='http://munin-monitoring.org/wiki/munin-node.conf' />.
|
2013-10-15 01:16:10 +00:00
|
|
|
'';
|
|
|
|
};
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2013-10-15 01:16:10 +00:00
|
|
|
extraConfig = mkOption {
|
|
|
|
default = "";
|
2016-10-23 17:33:41 +00:00
|
|
|
type = types.lines;
|
2013-10-15 01:16:10 +00:00
|
|
|
description = ''
|
|
|
|
<filename>munin-node.conf</filename> extra configuration. See
|
|
|
|
<link xlink:href='http://munin-monitoring.org/wiki/munin-node.conf' />
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# TODO: add option to add additional plugins
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
services.munin-cron = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Enable munin-cron. Takes care of all heavy lifting to collect data from
|
|
|
|
nodes and draws graphs to html. Runs munin-update, munin-limits,
|
|
|
|
munin-graphs and munin-html in that order.
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2013-10-15 01:16:10 +00:00
|
|
|
HTML output is in <filename>/var/www/munin/</filename>, configure your
|
|
|
|
favourite webserver to serve static files.
|
|
|
|
'';
|
|
|
|
};
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2013-10-15 01:16:10 +00:00
|
|
|
extraGlobalConfig = mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
<filename>munin.conf</filename> extra global configuration.
|
2013-10-23 11:54:46 +00:00
|
|
|
See <link xlink:href='http://munin-monitoring.org/wiki/munin.conf' />.
|
2013-10-15 01:16:10 +00:00
|
|
|
Useful to setup notifications, see
|
|
|
|
<link xlink:href='http://munin-monitoring.org/wiki/HowToContact' />
|
|
|
|
'';
|
2016-01-17 18:34:55 +00:00
|
|
|
example = ''
|
|
|
|
contact.email.command mail -s "Munin notification for ''${var:host}" someone@example.com
|
|
|
|
'';
|
2013-10-15 01:16:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
hosts = mkOption {
|
|
|
|
example = ''
|
|
|
|
[''${config.networking.hostName}]
|
|
|
|
address localhost
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Definitions of hosts of nodes to collect data from. Needs at least one
|
|
|
|
hosts for cron to succeed. See
|
|
|
|
<link xlink:href='http://munin-monitoring.org/wiki/munin.conf' />
|
|
|
|
'';
|
|
|
|
};
|
2014-09-05 13:50:55 +00:00
|
|
|
|
2013-10-15 01:16:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkMerge [ (mkIf (nodeCfg.enable || cronCfg.enable) {
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.munin ];
|
|
|
|
|
|
|
|
users.extraUsers = [{
|
|
|
|
name = "munin";
|
|
|
|
description = "Munin monitoring user";
|
|
|
|
group = "munin";
|
2014-02-07 22:08:15 +00:00
|
|
|
uid = config.ids.uids.munin;
|
2013-10-15 01:16:10 +00:00
|
|
|
}];
|
|
|
|
|
|
|
|
users.extraGroups = [{
|
|
|
|
name = "munin";
|
2014-02-07 22:08:15 +00:00
|
|
|
gid = config.ids.gids.munin;
|
2013-10-15 01:16:10 +00:00
|
|
|
}];
|
|
|
|
|
|
|
|
}) (mkIf nodeCfg.enable {
|
|
|
|
|
|
|
|
systemd.services.munin-node = {
|
2013-11-09 19:06:01 +00:00
|
|
|
description = "Munin Node";
|
2013-10-15 01:16:10 +00:00
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
path = [ pkgs.munin ];
|
|
|
|
environment.MUNIN_PLUGSTATE = "/var/run/munin";
|
2014-07-24 09:45:07 +00:00
|
|
|
preStart = ''
|
|
|
|
echo "updating munin plugins..."
|
|
|
|
|
|
|
|
mkdir -p /etc/munin/plugins
|
|
|
|
rm -rf /etc/munin/plugins/*
|
2017-01-29 10:11:01 +00:00
|
|
|
PATH="/run/wrappers/bin:/run/current-system/sw/bin:/run/current-system/sw/bin" ${pkgs.munin}/sbin/munin-node-configure --shell --families contrib,auto,manual --config ${nodeConf} --libdir=${muninPlugins} --servicedir=/etc/munin/plugins 2>/dev/null | ${pkgs.bash}/bin/bash
|
2014-07-24 09:45:07 +00:00
|
|
|
'';
|
2013-10-15 01:16:10 +00:00
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${pkgs.munin}/sbin/munin-node --config ${nodeConf} --servicedir /etc/munin/plugins/";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}) (mkIf cronCfg.enable {
|
|
|
|
|
|
|
|
services.cron.systemCronJobs = [
|
|
|
|
"*/5 * * * * munin ${pkgs.munin}/bin/munin-cron --config ${muninConf}"
|
|
|
|
];
|
|
|
|
|
|
|
|
system.activationScripts.munin-cron = stringAfter [ "users" "groups" ] ''
|
|
|
|
mkdir -p /var/{run,log,www,lib}/munin
|
|
|
|
chown -R munin:munin /var/{run,log,www,lib}/munin
|
|
|
|
'';
|
|
|
|
|
|
|
|
})];
|
|
|
|
}
|