add unitstatus
with some TODOs
This commit is contained in:
parent
9b090ff8ae
commit
1bfd201028
@ -101,6 +101,13 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unitstatus = {
|
||||||
|
enable = true;
|
||||||
|
email = "motiejus+alerts@jakstys.lt";
|
||||||
|
# see TODO in base/unitstatus/default.nix
|
||||||
|
#units = ["zfs-scrub"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -587,36 +594,6 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# https://northernlightlabs.se/2014-07-05/systemd-status-mail-on-unit-failure.html
|
|
||||||
"unit-status-mail@" = let
|
|
||||||
script = pkgs.writeShellScript "unit-status-mail" ''
|
|
||||||
set -e
|
|
||||||
MAILTO="motiejus+alerts@jakstys.lt"
|
|
||||||
UNIT=$1
|
|
||||||
EXTRA=""
|
|
||||||
for e in "''${@:2}"; do
|
|
||||||
EXTRA+="$e"$'\n'
|
|
||||||
done
|
|
||||||
UNITSTATUS=$(${pkgs.systemd}/bin/systemctl status "$UNIT")
|
|
||||||
${pkgs.postfix}/bin/sendmail $MAILTO <<EOF
|
|
||||||
Subject:Status mail for unit: $UNIT
|
|
||||||
|
|
||||||
Status report for unit: $UNIT
|
|
||||||
$EXTRA
|
|
||||||
|
|
||||||
$UNITSTATUS
|
|
||||||
EOF
|
|
||||||
|
|
||||||
echo -e "Status mail sent to: $MAILTO for unit: $UNIT"
|
|
||||||
'';
|
|
||||||
in {
|
|
||||||
description = "Send an email on unit failure";
|
|
||||||
serviceConfig = {
|
|
||||||
Type = "simple";
|
|
||||||
ExecStart = ''${script} "%I" "Hostname: %H" "Machine ID: %m" "Boot ID: %b" '';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
zfs-scrub.unitConfig.OnFailure = "unit-status-mail@zfs-scrub.service";
|
zfs-scrub.unitConfig.OnFailure = "unit-status-mail@zfs-scrub.service";
|
||||||
nixos-upgrade.unitConfig.OnFailure = "unit-status-mail@nixos-upgrade.service";
|
nixos-upgrade.unitConfig.OnFailure = "unit-status-mail@nixos-upgrade.service";
|
||||||
}
|
}
|
||||||
|
@ -6,9 +6,10 @@
|
|||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./sshd
|
|
||||||
./initrd
|
./initrd
|
||||||
./snapshot
|
./snapshot
|
||||||
|
./sshd
|
||||||
|
./unitstatus
|
||||||
./zfsborg
|
./zfsborg
|
||||||
];
|
];
|
||||||
|
|
||||||
|
64
modules/base/unitstatus/default.nix
Normal file
64
modules/base/unitstatus/default.nix
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
# TODO:
|
||||||
|
# - accept unit names:
|
||||||
|
# - assert they exist
|
||||||
|
# - add 'systemd.<unit>.unitConfig.OnFailure' to point to this one.
|
||||||
|
# - assert postfix is configured
|
||||||
|
options.mj.base.unitstatus = with lib.types; {
|
||||||
|
enable = lib.mkEnableOption "alert by email on unit failure";
|
||||||
|
email = lib.mkOption {type = str;};
|
||||||
|
#units = lib.mkOption {type = lisOf str;};
|
||||||
|
};
|
||||||
|
|
||||||
|
config =
|
||||||
|
lib.mkIf config.mj.base.unitstatus.enable {
|
||||||
|
systemd.services."unit-status-mail@" = let
|
||||||
|
# https://northernlightlabs.se/2014-07-05/systemd-status-mail-on-unit-failure.html
|
||||||
|
script = pkgs.writeShellScript "unit-status-mail" ''
|
||||||
|
set -e
|
||||||
|
MAILTO="${config.mj.base.unitstatus.email}"
|
||||||
|
UNIT=$1
|
||||||
|
EXTRA=""
|
||||||
|
for e in "''${@:2}"; do
|
||||||
|
EXTRA+="$e"$'\n'
|
||||||
|
done
|
||||||
|
UNITSTATUS=$(${pkgs.systemd}/bin/systemctl status "$UNIT")
|
||||||
|
${pkgs.postfix}/bin/sendmail $MAILTO <<EOF
|
||||||
|
Subject:Status mail for unit: $UNIT
|
||||||
|
|
||||||
|
Status report for unit: $UNIT
|
||||||
|
$EXTRA
|
||||||
|
|
||||||
|
$UNITSTATUS
|
||||||
|
EOF
|
||||||
|
|
||||||
|
echo -e "Status mail sent to: $MAILTO for unit: $UNIT"
|
||||||
|
'';
|
||||||
|
in {
|
||||||
|
description = "Send an email on unit failure";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
ExecStart = ''${script} "%I" "Hostname: %H" "Machine ID: %m" "Boot ID: %b" '';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
#};
|
||||||
|
# See TODO above.
|
||||||
|
#// {
|
||||||
|
# systemd.services =
|
||||||
|
# lib.listToAttrs
|
||||||
|
# (map (
|
||||||
|
# unit: {
|
||||||
|
# name = unit;
|
||||||
|
# value = {
|
||||||
|
# unitConfig = {OnFailure = "unit-status-mail@${unit}.service";};
|
||||||
|
# };
|
||||||
|
# }
|
||||||
|
# )
|
||||||
|
# config.mj.base.unitstatus.units);
|
||||||
|
};
|
||||||
|
}
|
@ -2,7 +2,6 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
myData,
|
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
mountLatest = mountpoint: zfs_name: ''
|
mountLatest = mountpoint: zfs_name: ''
|
||||||
@ -16,16 +15,15 @@
|
|||||||
exec ${pkgs.util-linux}/bin/umount ${mountpoint}/.snapshot-latest
|
exec ${pkgs.util-linux}/bin/umount ${mountpoint}/.snapshot-latest
|
||||||
'';
|
'';
|
||||||
in {
|
in {
|
||||||
options.mj.base.zfsborg = {
|
options.mj.base.zfsborg = with lib.types; {
|
||||||
enable = lib.mkEnableOption "backup zfs snapshots with borg";
|
enable = lib.mkEnableOption "backup zfs snapshots with borg";
|
||||||
|
|
||||||
repo = with lib.types; lib.mkOption {type = str;};
|
repo = lib.mkOption {type = str;};
|
||||||
passwdPath = with lib.types; lib.mkOption {type = str;};
|
passwdPath = lib.mkOption {type = str;};
|
||||||
|
|
||||||
mountpoints = lib.mkOption {
|
mountpoints = lib.mkOption {
|
||||||
default = {};
|
default = {};
|
||||||
type = with lib.types;
|
type = attrsOf (submodule (
|
||||||
attrsOf (submodule (
|
|
||||||
{...}: {
|
{...}: {
|
||||||
options = {
|
options = {
|
||||||
paths = lib.mkOption {type = listOf path;};
|
paths = lib.mkOption {type = listOf path;};
|
||||||
|
Loading…
Reference in New Issue
Block a user