24 lines
451 B
Nix
24 lines
451 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.prometheus = {
|
||
|
enable = true;
|
||
|
port = 9001;
|
||
|
|
||
|
scrapeConfigs = [
|
||
|
{
|
||
|
job_name = "node";
|
||
|
static_configs = [
|
||
|
{
|
||
|
targets = [
|
||
|
"ildkule.pvv.ntnu.no:${toString config.services.prometheus.exporters.node.port}"
|
||
|
"microbel.pvv.ntnu.no:9100"
|
||
|
"knakelibrak.pvv.ntnu.no:9100"
|
||
|
];
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|