Add prometheus pushgateway
Some checks failed
Run nix flake check / flake-check (push) Failing after 12m59s

This commit is contained in:
2025-05-28 17:10:50 +02:00
parent b9102b5a44
commit 5b06a95222
3 changed files with 24 additions and 1 deletions

View File

@@ -199,6 +199,20 @@
}
];
}
{
job_name = "pushgateway";
static_configs = [
{
targets = [ "localhost:9091" ];
}
];
}
];
pushgateway = {
enable = true;
web = {
external-url = "https://pushgw.home.2rjus.net";
};
};
};
}