mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
chore(ci): flake update
gatus module upstreamed
This commit is contained in:
parent
d04959b11a
commit
07228a1a1f
3 changed files with 262 additions and 206 deletions
6
flake.lock
generated
6
flake.lock
generated
|
|
@ -190,11 +190,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1727802920,
|
||||
"narHash": "sha256-HP89HZOT0ReIbI7IJZJQoJgxvB2Tn28V6XS3MNKnfLs=",
|
||||
"lastModified": 1728018373,
|
||||
"narHash": "sha256-NOiTvBbRLIOe5F6RbHaAh6++BNjsb149fGZd1T4+KBg=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "27e30d177e57d912d614c88c622dcfdb2e6e6515",
|
||||
"rev": "bc947f541ae55e999ffdb4013441347d83b00feb",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -5,19 +5,232 @@
|
|||
...
|
||||
}: let
|
||||
inherit (lib.options) mkOption mkEnableOption mkPackageOption;
|
||||
inherit (lib.modules) mkIf mkOptionDefault;
|
||||
inherit (lib.modules) mkIf mkMerge mkForce;
|
||||
inherit (lib.attrsets) attrValues;
|
||||
inherit (lib.lists) length unique;
|
||||
inherit (lib) types;
|
||||
|
||||
cfg = config.services.gatus;
|
||||
cfg' = config.services.gatus';
|
||||
|
||||
configFile = pkgs.writeText "gatus-config.yml" (builtins.toJSON (cfg.settings
|
||||
configFile = pkgs.writeText "gatus-config.yml" (builtins.toJSON (cfg'.settings
|
||||
// {
|
||||
endpoints = builtins.attrValues cfg.settings.endpoints;
|
||||
endpoints = builtins.attrValues cfg'.settings.endpoints;
|
||||
}));
|
||||
endpointModule = {name, lib, ...}: let
|
||||
inherit (lib) types;
|
||||
inherit (lib.options) mkOption mkEnableOption;
|
||||
inherit (lib.modules) mkOptionDefault;
|
||||
in {
|
||||
options = {
|
||||
enabled = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = ''
|
||||
Whether to monitor the endpoint.
|
||||
'';
|
||||
};
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
description = ''
|
||||
Name of the endpoint. Can be anything.
|
||||
Defaults to attribute name in `endpoints`.
|
||||
'';
|
||||
};
|
||||
group = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
Group name. Used to group multiple endpoints together on the dashboard.
|
||||
See [https://github.com/TwiN/gatus#endpoint-groups](Endpoint groups).
|
||||
'';
|
||||
};
|
||||
url = mkOption {type = types.str;};
|
||||
method = mkOption {
|
||||
type = types.enum [
|
||||
"GET"
|
||||
"HEAD"
|
||||
"POST"
|
||||
"PUT"
|
||||
"DELETE"
|
||||
"CONNECT"
|
||||
"OPTIONS"
|
||||
"TRACE"
|
||||
"PATCH"
|
||||
];
|
||||
default = "GET";
|
||||
description = ''
|
||||
Request method.
|
||||
'';
|
||||
};
|
||||
conditions = mkOption {
|
||||
type = types.listOf types.str;
|
||||
description = ''
|
||||
Conditions used to determine the health of the endpoint.
|
||||
See [https://github.com/TwiN/gatus#conditions](Conditions).
|
||||
'';
|
||||
};
|
||||
interval = mkOption {
|
||||
type = types.str;
|
||||
default = "60s";
|
||||
description = ''
|
||||
Duration to wait between every status check.
|
||||
'';
|
||||
};
|
||||
graphql =
|
||||
mkEnableOption "wrapping the body in a query param for GraphQL";
|
||||
body = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
Request body.
|
||||
'';
|
||||
};
|
||||
headers = mkOption {
|
||||
type = types.submodule {
|
||||
freeformType = (pkgs.formats.yaml {}).type;
|
||||
};
|
||||
default = {};
|
||||
description = ''
|
||||
Request headers.
|
||||
'';
|
||||
};
|
||||
dns = mkOption {
|
||||
type = types.nullOr (types.submodule {
|
||||
options = {
|
||||
query-type = mkOption {
|
||||
type = types.enum ["A" "AAAA" "CNAME" "MX" "NS"];
|
||||
description = ''
|
||||
Query type (e.g. MX)
|
||||
'';
|
||||
};
|
||||
query-name = mkOption {
|
||||
type = types.str;
|
||||
description = ''
|
||||
Query name (e.g. example.com)
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
default = null;
|
||||
};
|
||||
ssh = mkOption {
|
||||
type = types.nullOr (types.submodule {
|
||||
options = {
|
||||
username = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
SSH username
|
||||
'';
|
||||
};
|
||||
password = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
SSH password
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
default = null;
|
||||
};
|
||||
alerts = mkOption {
|
||||
type = types.listOf (types.submodule {
|
||||
options = {
|
||||
type = mkOption {
|
||||
type = types.enum [
|
||||
"custom"
|
||||
"discord"
|
||||
"email"
|
||||
"github"
|
||||
"gitlab"
|
||||
"googlechat"
|
||||
"gotify"
|
||||
"matrix"
|
||||
"mattermost"
|
||||
"messagebird"
|
||||
"ntfy"
|
||||
"opsgenie"
|
||||
"pagerduty"
|
||||
"pushover"
|
||||
"slack"
|
||||
"teams"
|
||||
"telegram"
|
||||
"twilio"
|
||||
];
|
||||
};
|
||||
enabled = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
failure-threshold = mkOption {type = types.ints.positive;};
|
||||
success-threshold = mkOption {type = types.ints.positive;};
|
||||
send-on-resolved =
|
||||
mkEnableOption
|
||||
"sending a notification once a triggered alert is marked as solved";
|
||||
description = mkOption {type = types.str;};
|
||||
};
|
||||
});
|
||||
default = [];
|
||||
};
|
||||
client = mkOption {
|
||||
type = types.submodule {
|
||||
freeformType = (pkgs.formats.yaml {}).type;
|
||||
};
|
||||
default = {};
|
||||
description = ''
|
||||
[https://github.com/TwiN/gatus#client-configuration](Client configuration).
|
||||
'';
|
||||
};
|
||||
ui = {
|
||||
hide-conditions =
|
||||
mkEnableOption "hiding the condition results on the UI";
|
||||
hide-hostname =
|
||||
mkEnableOption "hiding the hostname in the result";
|
||||
hide-url = mkEnableOption "hiding the URL in the results";
|
||||
dont-resolve-failed-conditions =
|
||||
mkEnableOption "resolving failed conditions for the UI";
|
||||
badge.response-time.thresholds = mkOption {
|
||||
type = types.listOf types.ints.positive;
|
||||
default = [50 200 300 500 750];
|
||||
description = ''
|
||||
List of response time thresholds. Each time a threshold is reached,
|
||||
the badge has a different color.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
config = {
|
||||
name = mkOptionDefault name;
|
||||
};
|
||||
};
|
||||
in {
|
||||
options.services.gatus = {
|
||||
options.services.gatus = let
|
||||
settingsModule = { ... }: {
|
||||
options = with types; {
|
||||
endpoints = mkOption {
|
||||
type = listOf unspecified;
|
||||
#type = attrsOf (submodule endpointModule);
|
||||
#default = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
in with types; {
|
||||
user = mkOption {
|
||||
type = nullOr str;
|
||||
default = null;
|
||||
};
|
||||
|
||||
endpoints = mkOption {
|
||||
type = attrsOf (submodule endpointModule);
|
||||
default = {};
|
||||
};
|
||||
|
||||
settings = mkOption {
|
||||
type = submodule settingsModule;
|
||||
};
|
||||
};
|
||||
options.services.gatus' = {
|
||||
enable = mkEnableOption "a developer-oriented service status page";
|
||||
|
||||
package = mkPackageOption pkgs "gatus" {};
|
||||
|
|
@ -51,188 +264,7 @@ in {
|
|||
};
|
||||
|
||||
endpoints = mkOption {
|
||||
type = types.attrsOf (types.submodule ({name, ...}: {
|
||||
options = {
|
||||
enabled = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = ''
|
||||
Whether to monitor the endpoint.
|
||||
'';
|
||||
};
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
description = ''
|
||||
Name of the endpoint. Can be anything.
|
||||
Defaults to attribute name in `endpoints`.
|
||||
'';
|
||||
};
|
||||
group = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
Group name. Used to group multiple endpoints together on the dashboard.
|
||||
See [https://github.com/TwiN/gatus#endpoint-groups](Endpoint groups).
|
||||
'';
|
||||
};
|
||||
url = mkOption {type = types.str;};
|
||||
method = mkOption {
|
||||
type = types.enum [
|
||||
"GET"
|
||||
"HEAD"
|
||||
"POST"
|
||||
"PUT"
|
||||
"DELETE"
|
||||
"CONNECT"
|
||||
"OPTIONS"
|
||||
"TRACE"
|
||||
"PATCH"
|
||||
];
|
||||
default = "GET";
|
||||
description = ''
|
||||
Request method.
|
||||
'';
|
||||
};
|
||||
conditions = mkOption {
|
||||
type = types.listOf types.str;
|
||||
description = ''
|
||||
Conditions used to determine the health of the endpoint.
|
||||
See [https://github.com/TwiN/gatus#conditions](Conditions).
|
||||
'';
|
||||
};
|
||||
interval = mkOption {
|
||||
type = types.str;
|
||||
default = "60s";
|
||||
description = ''
|
||||
Duration to wait between every status check.
|
||||
'';
|
||||
};
|
||||
graphql =
|
||||
mkEnableOption "wrapping the body in a query param for GraphQL";
|
||||
body = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
Request body.
|
||||
'';
|
||||
};
|
||||
headers = mkOption {
|
||||
type = types.submodule {
|
||||
freeformType = (pkgs.formats.yaml {}).type;
|
||||
};
|
||||
default = {};
|
||||
description = ''
|
||||
Request headers.
|
||||
'';
|
||||
};
|
||||
dns = mkOption {
|
||||
type = types.nullOr (types.submodule {
|
||||
options = {
|
||||
query-type = mkOption {
|
||||
type = types.enum ["A" "AAAA" "CNAME" "MX" "NS"];
|
||||
description = ''
|
||||
Query type (e.g. MX)
|
||||
'';
|
||||
};
|
||||
query-name = mkOption {
|
||||
type = types.str;
|
||||
description = ''
|
||||
Query name (e.g. example.com)
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
default = null;
|
||||
};
|
||||
ssh = mkOption {
|
||||
type = types.nullOr (types.submodule {
|
||||
options = {
|
||||
username = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
SSH username
|
||||
'';
|
||||
};
|
||||
password = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
SSH password
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
default = null;
|
||||
};
|
||||
alerts = mkOption {
|
||||
type = types.listOf (types.submodule {
|
||||
options = {
|
||||
type = mkOption {
|
||||
type = types.enum [
|
||||
"custom"
|
||||
"discord"
|
||||
"email"
|
||||
"github"
|
||||
"gitlab"
|
||||
"googlechat"
|
||||
"gotify"
|
||||
"matrix"
|
||||
"mattermost"
|
||||
"messagebird"
|
||||
"ntfy"
|
||||
"opsgenie"
|
||||
"pagerduty"
|
||||
"pushover"
|
||||
"slack"
|
||||
"teams"
|
||||
"telegram"
|
||||
"twilio"
|
||||
];
|
||||
};
|
||||
enabled = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
failure-threshold = mkOption {type = types.ints.positive;};
|
||||
success-threshold = mkOption {type = types.ints.positive;};
|
||||
send-on-resolved =
|
||||
mkEnableOption
|
||||
"sending a notification once a triggered alert is marked as solved";
|
||||
description = mkOption {type = types.str;};
|
||||
};
|
||||
});
|
||||
default = [];
|
||||
};
|
||||
client = mkOption {
|
||||
type = types.submodule {
|
||||
freeformType = (pkgs.formats.yaml {}).type;
|
||||
};
|
||||
default = {};
|
||||
description = ''
|
||||
[https://github.com/TwiN/gatus#client-configuration](Client configuration).
|
||||
'';
|
||||
};
|
||||
ui = {
|
||||
hide-conditions =
|
||||
mkEnableOption "hiding the condition results on the UI";
|
||||
hide-hostname =
|
||||
mkEnableOption "hiding the hostname in the result";
|
||||
hide-url = mkEnableOption "hiding the URL in the results";
|
||||
dont-resolve-failed-conditions =
|
||||
mkEnableOption "resolving failed conditions for the UI";
|
||||
badge.response-time.thresholds = mkOption {
|
||||
type = types.listOf types.ints.positive;
|
||||
default = [50 200 300 500 750];
|
||||
description = ''
|
||||
List of response time thresholds. Each time a threshold is reached,
|
||||
the badge has a different color.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
config = {name = mkOptionDefault name;};
|
||||
}));
|
||||
type = types.attrsOf (types.submodule endpointModule);
|
||||
default = {};
|
||||
};
|
||||
alerting = mkOption {
|
||||
|
|
@ -310,8 +342,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
systemd.services.gatus = {
|
||||
config = let
|
||||
conf'.systemd.services.gatus = {
|
||||
description = "Automated developer-oriented status page";
|
||||
after = ["network.target"];
|
||||
wantedBy = ["multi-user.target"];
|
||||
|
|
@ -321,12 +353,12 @@ in {
|
|||
serviceConfig = {
|
||||
Type = "simple";
|
||||
Restart = "on-failure";
|
||||
User = cfg.user;
|
||||
Group = cfg.group;
|
||||
User = cfg'.user;
|
||||
Group = cfg'.group;
|
||||
StateDirectory = "gatus";
|
||||
LogsDirectory = "gatus";
|
||||
EnvironmentFile =
|
||||
mkIf (cfg.environmentFile != null) [cfg.environmentFile];
|
||||
mkIf (cfg'.environmentFile != null) [cfg'.environmentFile];
|
||||
|
||||
AmbientCapabilities = ["CAP_NET_RAW"]; # needed for ICMP probes
|
||||
DevicePolicy = "closed";
|
||||
|
|
@ -354,29 +386,42 @@ in {
|
|||
UMask = "0077";
|
||||
|
||||
ExecStart = [
|
||||
(lib.getExe cfg.package)
|
||||
(lib.getExe cfg'.package)
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
users.groups = mkIf (cfg.group == "gatus") {${cfg.group} = {};};
|
||||
conf'.users.groups = mkIf (cfg'.group == "gatus") {${cfg'.group} = {};};
|
||||
|
||||
users.users = mkIf (cfg.user == "gatus") {
|
||||
${cfg.user} = {
|
||||
inherit (cfg) group;
|
||||
conf'.users.users = mkIf (cfg'.user == "gatus") {
|
||||
${cfg'.user} = {
|
||||
inherit (cfg') group;
|
||||
description = "gatus service user";
|
||||
isSystemUser = true;
|
||||
};
|
||||
};
|
||||
assertions = let
|
||||
endpointNames = map (endpoint: endpoint.name) (attrValues cfg.settings.endpoints);
|
||||
assertions = endpoints: let
|
||||
endpointNames = map (endpoint: endpoint.name) (attrValues endpoints);
|
||||
in [
|
||||
{
|
||||
assertion = length (unique endpointNames) == length endpointNames;
|
||||
message = "Gatus endpoint names must be unique";
|
||||
}
|
||||
];
|
||||
};
|
||||
conf'.assertions = assertions cfg'.settings.endpoints;
|
||||
cfg = config.services.gatus;
|
||||
conf.systemd.services.gatus = {
|
||||
serviceConfig.User = mkIf (cfg.user != null) (mkForce cfg.user);
|
||||
};
|
||||
conf.assertions = assertions cfg.endpoints;
|
||||
serviceConf = {
|
||||
services.gatus.settings.endpoints = mkIf (cfg.endpoints != {}) (attrValues cfg.endpoints);
|
||||
};
|
||||
in mkMerge [
|
||||
(mkIf cfg'.enable conf')
|
||||
(mkIf cfg.enable conf)
|
||||
serviceConf
|
||||
];
|
||||
|
||||
meta.maintainers = with lib.maintainers; [christoph-heiss];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -174,16 +174,18 @@ in {
|
|||
};
|
||||
services.gatus = {
|
||||
enable = true;
|
||||
user = mkDefault "gatus";
|
||||
environmentFile = config.sops.secrets.gatus_environment_file.path;
|
||||
|
||||
# Endpoint configuration
|
||||
endpoints = listToAttrs (concatMap mapSystem statusSystems);
|
||||
|
||||
settings = {
|
||||
# Environment variables are pulled in to be usable within the config.
|
||||
alerting.discord = {
|
||||
webhook-url = "\${DISCORD_WEBHOOK_URL}";
|
||||
};
|
||||
|
||||
# Endpoint configuration
|
||||
endpoints = listToAttrs (concatMap mapSystem statusSystems);
|
||||
|
||||
# The actual status page configuration
|
||||
ui = {
|
||||
title = "Gensokyo Zone Status";
|
||||
|
|
@ -209,6 +211,15 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
users = mkIf (cfg.enable && cfg.user == "gatus") {
|
||||
groups.gatus = {};
|
||||
users.gatus = {
|
||||
group = "gatus";
|
||||
description = "gatus service user";
|
||||
isSystemUser = true;
|
||||
};
|
||||
};
|
||||
|
||||
networking.firewall.interfaces.lan.allowedTCPPorts = mkIf cfg.enable [
|
||||
cfg.settings.web.port
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue