nix-infra/config/hosts/metrics-nekomesh/prometheus.nix
2025-11-02 21:20:49 +01:00

16 lines
280 B
Nix

{ ... }:
{
services.prometheus = {
enable = true;
retentionTime = "2y";
scrapeConfigs = [
{
job_name = "meshcore";
scrape_interval = "15m";
static_configs = [{
targets = [ "localhost:9091" ];
}];
}
];
};
}