nixpkgs/nixos/tests/munin.nix

45 lines
1.3 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.
2019-12-03 19:24:50 +00:00
import ./make-test-python.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 = {
2019-12-03 19:24:50 +00:00
munin-node = {
enable = true;
# disable a failing plugin to prevent irrelevant error message, see #23049
disabledPlugins = [ "apc_nis" ];
};
munin-cron = {
2013-10-20 19:16:13 +00:00
enable = true;
2019-12-03 19:24:50 +00:00
hosts = ''
[${config.networking.hostName}]
address localhost
'';
};
2013-10-20 19:16:13 +00:00
};
2019-12-03 19:24:50 +00:00
# increase the systemd timer interval so it fires more often
systemd.timers.munin-cron.timerConfig.OnCalendar = pkgs.stdenv.lib.mkForce "*:*:0/10";
2013-10-20 19:16:13 +00:00
};
};
2013-10-20 19:16:13 +00:00
testScript = ''
2019-12-03 19:24:50 +00:00
start_all()
2019-12-03 19:24:50 +00:00
with subtest("ensure munin-node starts and listens on 4949"):
one.wait_for_unit("munin-node.service")
one.wait_for_open_port(4949)
with subtest("ensure munin-cron output is correct"):
one.wait_for_file("/var/lib/munin/one/one-uptime-uptime-g.rrd")
one.wait_for_file("/var/www/munin/one/index.html")
2013-10-20 19:16:13 +00:00
'';
})