Compare commits
No commits in common. "3a37fefd4da063efd83009aea30c83db25dae244" and "78456063bacf3b8521dcfbaa9e16bfa413dab800" have entirely different histories.
3a37fefd4d
...
78456063ba
|
@ -182,6 +182,8 @@ in {
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
allow ${values.hosts.ildkule.ipv4};
|
allow ${values.hosts.ildkule.ipv4};
|
||||||
allow ${values.hosts.ildkule.ipv6};
|
allow ${values.hosts.ildkule.ipv6};
|
||||||
|
allow ${values.hosts.ildkule.ipv4_global};
|
||||||
|
allow ${values.hosts.ildkule.ipv6_global};
|
||||||
deny all;
|
deny all;
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
@ -193,6 +195,8 @@ in {
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
allow ${values.hosts.ildkule.ipv4};
|
allow ${values.hosts.ildkule.ipv4};
|
||||||
allow ${values.hosts.ildkule.ipv6};
|
allow ${values.hosts.ildkule.ipv6};
|
||||||
|
allow ${values.hosts.ildkule.ipv4_global};
|
||||||
|
allow ${values.hosts.ildkule.ipv6_global};
|
||||||
deny all;
|
deny all;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,8 +4,9 @@
|
||||||
./matrix-synapse.nix
|
./matrix-synapse.nix
|
||||||
# TODO: enable once https://github.com/NixOS/nixpkgs/pull/242365 gets merged
|
# TODO: enable once https://github.com/NixOS/nixpkgs/pull/242365 gets merged
|
||||||
# ./mysqld.nix
|
# ./mysqld.nix
|
||||||
|
./node.nix
|
||||||
./postgres.nix
|
./postgres.nix
|
||||||
./machines.nix
|
./systemd.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
services.prometheus = {
|
services.prometheus = {
|
||||||
|
|
|
@ -1,54 +0,0 @@
|
||||||
{ config, ... }: let
|
|
||||||
cfg = config.services.prometheus;
|
|
||||||
in {
|
|
||||||
services.prometheus.scrapeConfigs = [{
|
|
||||||
job_name = "base_info";
|
|
||||||
static_configs = [
|
|
||||||
{ labels.hostname = "ildkule";
|
|
||||||
targets = [
|
|
||||||
"ildkule.pvv.ntnu.no:${toString cfg.exporters.node.port}"
|
|
||||||
"ildkule.pvv.ntnu.no:${toString cfg.exporters.systemd.port}"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ labels.hostname = "bekkalokk";
|
|
||||||
targets = [
|
|
||||||
"bekkalokk.pvv.ntnu.no:9100"
|
|
||||||
"bekkalokk.pvv.ntnu.no:9101"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ labels.hostname = "bicep";
|
|
||||||
targets = [
|
|
||||||
"bicep.pvv.ntnu.no:9100"
|
|
||||||
"bicep.pvv.ntnu.no:9101"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ labels.hostname = "brzeczyszczykiewicz";
|
|
||||||
targets = [
|
|
||||||
"brzeczyszczykiewicz.pvv.ntnu.no:9100"
|
|
||||||
"brzeczyszczykiewicz.pvv.ntnu.no:9101"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ labels.hostname = "georg";
|
|
||||||
targets = [
|
|
||||||
"georg.pvv.ntnu.no:9100"
|
|
||||||
"georg.pvv.ntnu.no:9101"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ labels.hostname = "hildring";
|
|
||||||
targets = [
|
|
||||||
"hildring.pvv.ntnu.no:9100"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ labels.hostname = "isvegg";
|
|
||||||
targets = [
|
|
||||||
"isvegg.pvv.ntnu.no:9100"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ labels.hostname = "microbel";
|
|
||||||
targets = [
|
|
||||||
"microbel.pvv.ntnu.no:9100"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}];
|
|
||||||
}
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
{ 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"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
{ config, ... }: let
|
||||||
|
cfg = config.services.prometheus;
|
||||||
|
in {
|
||||||
|
services.prometheus.scrapeConfigs = [{
|
||||||
|
job_name = "systemd";
|
||||||
|
static_configs = [
|
||||||
|
{
|
||||||
|
targets = [
|
||||||
|
"ildkule.pvv.ntnu.no:${toString cfg.exporters.node.port}"
|
||||||
|
"bicep.pvv.ntnu.no:9101"
|
||||||
|
"bekkalokk.pvv.ntnu.no:9101"
|
||||||
|
"brzeczyszczykiewicz.pvv.ntnu.no:9101"
|
||||||
|
"georg.pvv.ntnu.no:9101"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
}
|
|
@ -34,6 +34,8 @@
|
||||||
"::1"
|
"::1"
|
||||||
values.hosts.ildkule.ipv4
|
values.hosts.ildkule.ipv4
|
||||||
values.hosts.ildkule.ipv6
|
values.hosts.ildkule.ipv6
|
||||||
|
values.hosts.ildkule.ipv4_global
|
||||||
|
values.hosts.ildkule.ipv6_global
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue