ildkule: Move metrics->monitoring. Add uptime-kuma. Adjust prometheus exporters.
This commit is contained in:
parent
ba457e4d4d
commit
f96324f5ae
|
@ -6,8 +6,8 @@
|
||||||
../../base.nix
|
../../base.nix
|
||||||
../../misc/metrics-exporters.nix
|
../../misc/metrics-exporters.nix
|
||||||
|
|
||||||
|
./services/monitoring
|
||||||
./services/nginx
|
./services/nginx
|
||||||
./services/metrics
|
|
||||||
];
|
];
|
||||||
|
|
||||||
sops.defaultSopsFile = ../../secrets/ildkule/ildkule.yaml;
|
sops.defaultSopsFile = ../../secrets/ildkule/ildkule.yaml;
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./prometheus
|
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
./loki.nix
|
./loki.nix
|
||||||
|
./prometheus
|
||||||
|
./uptime-kuma.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -17,7 +17,7 @@ in {
|
||||||
secretFile = path: "$__file{${path}}";
|
secretFile = path: "$__file{${path}}";
|
||||||
in {
|
in {
|
||||||
server = {
|
server = {
|
||||||
domain = "ildkule.pvv.ntnu.no";
|
domain = "grafana.pvv.ntnu.no";
|
||||||
http_port = 2342;
|
http_port = 2342;
|
||||||
http_addr = "127.0.0.1";
|
http_addr = "127.0.0.1";
|
||||||
};
|
};
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.services.uptime-kuma;
|
||||||
|
domain = "uptime.pvv.ntnu.no";
|
||||||
|
in {
|
||||||
|
services.uptime-kuma = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
PORT = "5059";
|
||||||
|
HOST = "127.0.1.2";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts.${domain} = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
kTLS = true;
|
||||||
|
locations."/".proxyPass = "http://${cfg.settings.HOST}:${cfg.settings.PORT}";
|
||||||
|
};
|
||||||
|
}
|
|
@ -14,6 +14,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