summary refs log tree commit diff
path: root/nixos/tests/munin.nix
blob: 5f9378c0fa5d91702dce0ef008d56e220812f724 (plain) (blame)
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
# This test runs basic munin setup with node and cron job running on the same
# machine.

import ./make-test.nix {
  name = "munin";

  nodes = {
    one =
      { config, pkgs, ... }:
        {
          services = {
           munin-node.enable = true;
           munin-cron = {
             enable = true;
             hosts = ''
               [${config.networking.hostName}]
               address localhost
             '';
           };
          };
          systemd.services.munin-node.unitConfig.TimeoutSec = 600;
        };
    };

  testScript = ''
    startAll;

    $one->waitForUnit("munin-node.service");
    $one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd");
    $one->waitForFile("/var/www/munin/one/index.html");
  '';
}