summary refs log blame commit diff
path: root/nixos/tests/munin.nix
blob: acc4b949ab57ac2e3c3170d17704463086f2acc5 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                                             


                        

                            
         











                                              
 

                 
 




                                                                    
# This test runs basic munin setup with node and cron job running on the same
# machine.

import ./make-test.nix {

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

  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");
  '';
}