1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 08:50:11 -04:00
nixpkgs/nixos/tests/gatus.nix
2024-09-19 21:34:10 +02:00

35 lines
693 B
Nix

{ pkgs, ... }:
{
name = "gatus";
meta.maintainers = with pkgs.lib.maintainers; [ pizzapim ];
nodes.machine =
{ ... }:
{
services.gatus = {
enable = true;
settings = {
web.port = 8080;
metrics = true;
endpoints = [
{
name = "metrics";
url = "http://localhost:8080/metrics";
interval = "1s";
conditions = [
"[STATUS] == 200"
];
}
];
};
};
};
testScript = ''
machine.wait_for_unit("gatus.service")
machine.succeed("curl -s http://localhost:8080/metrics | grep go_info")
'';
}