All checks were successful
Run pre-commit on all files / pre-commit (push) Successful in 33s
Check meta / check_dns (pull_request) Successful in 20s
Check meta / check_meta (pull_request) Successful in 20s
Check workflows / check_workflows (pull_request) Successful in 29s
Build all the nodes / netcore02 (pull_request) Successful in 40s
Build all the nodes / ap01 (pull_request) Successful in 1m18s
Build all the nodes / bridge01 (pull_request) Successful in 1m49s
Build all the nodes / geo01 (pull_request) Successful in 1m58s
Build all the nodes / compute01 (pull_request) Successful in 2m13s
Build all the nodes / geo02 (pull_request) Successful in 2m6s
Build all the nodes / storage01 (pull_request) Successful in 2m2s
Build all the nodes / rescue01 (pull_request) Successful in 2m17s
Build all the nodes / vault01 (pull_request) Successful in 2m2s
Run pre-commit on all files / pre-commit (pull_request) Successful in 34s
Build all the nodes / web02 (pull_request) Successful in 1m45s
Build all the nodes / web03 (pull_request) Successful in 1m54s
Build all the nodes / web01 (pull_request) Successful in 2m27s
165 lines
3.4 KiB
Nix
165 lines
3.4 KiB
Nix
# SPDX-FileCopyrightText: 2024 Maurice Debray <maurice.debray@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
serverNodes,
|
|
sources,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
concatLists
|
|
mapAttrsToList
|
|
mkForce
|
|
mkMerge
|
|
;
|
|
|
|
inherit (config.statelessUptimeKuma.lib)
|
|
pingProbesFromHive
|
|
fromHive
|
|
httpProbesFromConfig
|
|
probesWithTag
|
|
;
|
|
|
|
probesCfg = config.statelessUptimeKuma.probesConfig;
|
|
|
|
mkMonitors = name: builtins.attrNames (probesWithTag { inherit name; } probesCfg);
|
|
|
|
host = "status.dgnum.eu";
|
|
|
|
port = 3001;
|
|
|
|
httpExcludes =
|
|
[
|
|
"localhost"
|
|
"ens.cal.dgnum.eu"
|
|
"luj-current.cal.dgnum.eu"
|
|
"s3.dgnum.eu"
|
|
"cdn.dgnum.eu"
|
|
"saml-idp.dgnum.eu"
|
|
"status.dgnum.eu"
|
|
"radius.dgnum.eu"
|
|
]
|
|
++ (concatLists (mapAttrsToList (_: { config, ... }: config.dgn-redirections.retired) serverNodes));
|
|
|
|
extraProbes = {
|
|
monitors = {
|
|
"prometheus.dgnum.eu" = {
|
|
type = mkForce "http";
|
|
accepted_statuscodes = [ "401" ];
|
|
};
|
|
|
|
"ollama01.beta.dgnum.eu" = {
|
|
type = mkForce "http";
|
|
accepted_statuscodes = [ "401" ];
|
|
};
|
|
|
|
"s3-admin.dgnum.eu" = {
|
|
type = mkForce "http";
|
|
accepted_statuscodes = [ "400" ];
|
|
};
|
|
|
|
"api.meet.dgnum.eu" = {
|
|
keyword = "Crab Fit API";
|
|
};
|
|
};
|
|
};
|
|
|
|
status_pages = {
|
|
"dgnum" = {
|
|
title = "DGNum";
|
|
description = "Etat de l'infra de la DGNum";
|
|
showTags = true;
|
|
publicGroupList = [
|
|
{
|
|
name = "Services";
|
|
weight = 1;
|
|
monitorList = mkMonitors "Service";
|
|
}
|
|
{
|
|
name = "Serveurs";
|
|
weight = 2;
|
|
monitorList = mkMonitors "Ping";
|
|
}
|
|
{
|
|
name = "VPN Interne";
|
|
weight = 2;
|
|
monitorList = mkMonitors "VPN";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
pingProbes = pingProbesFromHive {
|
|
nodes = serverNodes;
|
|
mkHost = _: config: config.networking.fqdn;
|
|
tags = [ { name = "Ping"; } ];
|
|
excludes = [
|
|
"geo01"
|
|
"geo02"
|
|
"rescue01"
|
|
];
|
|
};
|
|
|
|
vpnProbes = pingProbesFromHive {
|
|
nodes = serverNodes;
|
|
prefix = "VPN - ";
|
|
mkHost = node: _: "${node}.dgnum";
|
|
tags = [ { name = "VPN"; } ];
|
|
excludes = [
|
|
"rescue01"
|
|
"web02"
|
|
];
|
|
};
|
|
|
|
httpProbes = fromHive {
|
|
nodes = serverNodes;
|
|
builder =
|
|
_: module:
|
|
httpProbesFromConfig {
|
|
inherit (module) config;
|
|
tags = [
|
|
{
|
|
name = "Host";
|
|
value = module.config.networking.fqdn;
|
|
}
|
|
{ name = "Service"; }
|
|
];
|
|
excludes = httpExcludes;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
imports = [ (sources.stateless-uptime-kuma + "/nixos/module.nix") ];
|
|
nixpkgs.overlays = [ (import (sources.stateless-uptime-kuma + "/overlay.nix")) ];
|
|
|
|
services.uptime-kuma.enable = true;
|
|
|
|
dgn-web.simpleProxies.uptime-kuma = {
|
|
inherit host port;
|
|
proxyWebsockets = true;
|
|
};
|
|
|
|
systemd.services.stateless-uptime-kuma.serviceConfig.ExecStartPre = "${lib.getExe' pkgs.coreutils "sleep"} 10";
|
|
|
|
statelessUptimeKuma = {
|
|
probesConfig = mkMerge [
|
|
pingProbes
|
|
httpProbes
|
|
extraProbes
|
|
vpnProbes
|
|
{ inherit status_pages; }
|
|
];
|
|
|
|
extraFlags = [ "-s" ];
|
|
|
|
host = "http://localhost:${builtins.toString port}/";
|
|
username = "dgnum";
|
|
passwordFile = config.age.secrets."stateless-uptime-kuma-password".path;
|
|
enableService = true;
|
|
};
|
|
}
|