nixpkgs/nixos/tests/munin.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2013-10-20 19:16:13 +00:00
# This test runs basic munin setup with node and cron job running on the same
# machine.
import ./make-test.nix ({ pkgs, ...} : {
2014-06-28 14:04:49 +00:00
name = "munin";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ domenkozar eelco ];
};
nodes = {
2013-10-20 19:16:13 +00:00
one =
{ config, ... }:
{
2013-10-20 19:16:13 +00:00
services = {
munin-node = {
2013-10-20 19:16:13 +00:00
enable = true;
# disable a failing plugin to prevent irrelevant error message, see #23049
disabledPlugins = [ "apc_nis" ];
2013-10-20 19:16:13 +00:00
};
munin-cron = {
enable = true;
hosts = ''
[${config.networking.hostName}]
address localhost
'';
};
2013-10-20 19:16:13 +00:00
};
# long timeout to prevent hydra failure on high load
systemd.services.munin-node.serviceConfig.TimeoutStartSec = "10min";
2013-10-20 19:16:13 +00:00
};
};
2013-10-20 19:16:13 +00:00
testScript = ''
startAll;
2013-10-20 19:16:13 +00:00
$one->waitForUnit("munin-node.service");
# make sure the node is actually listening
$one->waitForOpenPort(4949);
$one->succeed('systemctl start munin-cron');
# wait for munin-cron output
2013-10-20 19:16:13 +00:00
$one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd");
$one->waitForFile("/var/www/munin/one/index.html");
'';
})