pvv-nixos-config/hosts/ildkule/services/monitoring/prometheus/node.nix
Felix Albrigtsen f96324f5ae
Some checks failed
Eval nix flake / evals (push) Failing after 1m49s
Eval nix flake / evals (pull_request) Failing after 1m44s
ildkule: Move metrics->monitoring. Add uptime-kuma. Adjust prometheus exporters.
2024-04-21 18:46:58 +02:00

23 lines
583 B
Nix

{ config, ... }: let
cfg = config.services.prometheus;
in {
services.prometheus.scrapeConfigs = [{
job_name = "node";
static_configs = [
{
targets = [
"ildkule.pvv.ntnu.no:${toString cfg.exporters.node.port}"
"microbel.pvv.ntnu.no:9100"
"isvegg.pvv.ntnu.no:9100"
"knakelibrak.pvv.ntnu.no:9100"
"hildring.pvv.ntnu.no:9100"
"bicep.pvv.ntnu.no:9100"
"essendrop.pvv.ntnu.no:9100"
"andresbu.pvv.ntnu.no:9100"
"bekkalokk.pvv.ntnu.no:9100"
];
}
];
}];
}