2013-10-20 19:16:13 +00:00
|
|
|
# This test runs basic munin setup with node and cron job running on the same
|
|
|
|
# machine.
|
|
|
|
|
2015-07-12 10:09:40 +00:00
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
2014-06-28 14:04:49 +00:00
|
|
|
name = "munin";
|
2015-07-12 10:09:40 +00:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ iElectric eelco chaoflow ];
|
|
|
|
};
|
2014-04-14 12:02:44 +00:00
|
|
|
|
|
|
|
nodes = {
|
2013-10-20 19:16:13 +00:00
|
|
|
one =
|
|
|
|
{ config, pkgs, ... }:
|
2014-04-14 12:02:44 +00:00
|
|
|
{
|
2013-10-20 19:16:13 +00:00
|
|
|
services = {
|
|
|
|
munin-node.enable = true;
|
|
|
|
munin-cron = {
|
|
|
|
enable = true;
|
|
|
|
hosts = ''
|
|
|
|
[${config.networking.hostName}]
|
|
|
|
address localhost
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2014-09-28 12:25:05 +00:00
|
|
|
systemd.services.munin-node.serviceConfig.TimeoutStartSec = "3min";
|
2013-10-20 19:16:13 +00:00
|
|
|
};
|
|
|
|
};
|
2014-04-14 12:02:44 +00:00
|
|
|
|
2013-10-20 19:16:13 +00:00
|
|
|
testScript = ''
|
|
|
|
startAll;
|
2014-04-14 12:02:44 +00:00
|
|
|
|
2013-10-20 19:16:13 +00:00
|
|
|
$one->waitForUnit("munin-node.service");
|
|
|
|
$one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd");
|
|
|
|
$one->waitForFile("/var/www/munin/one/index.html");
|
|
|
|
'';
|
2015-07-12 10:09:40 +00:00
|
|
|
})
|