configuration.nix/hosts/rico0/services/apps/prometheus.nix

20 lines
344 B
Nix
Raw Normal View History

2024-07-16 22:59:07 +05:30
_: {
services.prometheus = {
enable = true;
scrapeConfigs = [
{
job_name = "frp";
static_configs = [
{ targets = [ "10.10.10.1:7500" ]; }
];
}
{
job_name = "blocky";
static_configs = [
{ targets = [ "10.10.10.10:8080" ]; }
];
}
];
};
}