vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / gatus.nix
blob5bb146540fbac56a1392cc3efa675ecbe963bddc
1 { pkgs, ... }:
3   name = "gatus";
4   meta.maintainers = with pkgs.lib.maintainers; [ pizzapim ];
6   nodes.machine =
7     { ... }:
8     {
9       services.gatus = {
10         enable = true;
12         settings = {
13           web.port = 8080;
14           metrics = true;
16           endpoints = [
17             {
18               name = "metrics";
19               url = "http://localhost:8080/metrics";
20               interval = "1s";
21               conditions = [
22                 "[STATUS] == 200"
23               ];
24             }
25           ];
26         };
27       };
28     };
30   testScript = ''
31     machine.wait_for_unit("gatus.service")
32     machine.succeed("curl -s http://localhost:8080/metrics | grep go_info")
33   '';