summaryrefslogtreecommitdiffstats
path: root/nixos/tests/munin.nix
blob: 24712c4c34f942510315932666908540f1b20f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This test runs basic munin setup with node and cron job running on the same
# machine.

{ pkgs, ... }:
{
  name = "munin";
  meta = {
    maintainers = [ ];
  };

  nodes = {
    one =
      { config, ... }:
      {
        services = {
          munin-node = {
            enable = true;
            # disable a failing plugin to prevent irrelevant error message, see #23049
            disabledPlugins = [ "apc_nis" ];
          };
          munin-cron = {
            enable = true;
            hosts = ''
              [${config.networking.hostName}]
              address localhost
            '';
          };
        };

        # increase the systemd timer interval so it fires more often
        systemd.timers.munin-cron.timerConfig.OnCalendar = pkgs.lib.mkForce "*:*:0/10";
      };
  };

  testScript = ''
    start_all()

    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")
        one.wait_for_file("/var/www/munin/one/one/diskstat_iops_vda-day.png", timeout=60)
  '';
}