vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / munin.nix
blob7b7bf6f41c046fee63029c7759eea01647091e87
1 # This test runs basic munin setup with node and cron job running on the same
2 # machine.
4 import ./make-test-python.nix ({ pkgs, ...} : {
5   name = "munin";
6   meta = with pkgs.lib.maintainers; {
7     maintainers = [ domenkozar ];
8   };
10   nodes = {
11     one =
12       { config, ... }:
13         {
14           services = {
15             munin-node = {
16               enable = true;
17               # disable a failing plugin to prevent irrelevant error message, see #23049
18               disabledPlugins = [ "apc_nis" ];
19             };
20             munin-cron = {
21              enable = true;
22              hosts = ''
23                [${config.networking.hostName}]
24                address localhost
25              '';
26             };
27           };
29           # increase the systemd timer interval so it fires more often
30           systemd.timers.munin-cron.timerConfig.OnCalendar = pkgs.lib.mkForce "*:*:0/10";
31         };
32     };
34   testScript = ''
35     start_all()
37     with subtest("ensure munin-node starts and listens on 4949"):
38         one.wait_for_unit("munin-node.service")
39         one.wait_for_open_port(4949)
41     with subtest("ensure munin-cron output is correct"):
42         one.wait_for_file("/var/lib/munin/one/one-uptime-uptime-g.rrd")
43         one.wait_for_file("/var/www/munin/one/index.html")
44         one.wait_for_file("/var/www/munin/one/one/diskstat_iops_vda-day.png", timeout=60)
45   '';