This commit is contained in:
mwiegand 2022-08-18 02:17:26 +02:00
parent 9b9f443b9b
commit 05faac8a30
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,12 @@
Timer=$1
Triggers=$(systemctl show ${Timer}.timer --property=Triggers --value)
if systemctl is-failed "$Triggers"
then
InvocationID=$(systemctl show "$Triggers" --property=InvocationID --value)
ExitCode=$(systemctl show "$Triggers" -p ExecStartEx --value | sed 's/^{//' | sed 's/}$//' | tr ';' '\n' | xargs -n 1 | grep '^status=' | cut -d '=' -f 2)
journalctl INVOCATION_ID="$InvocationID" --output cat
exit 1
else
exit 0
fi

View file

@ -2,3 +2,7 @@ svc_systemd['cron'] = {
'enabled': False,
'running': False,
}
files['/usr/lib/nagios/plugins/check_systemd_timer'] = {
'mode': '0755',
}

View file

@ -48,3 +48,19 @@ def systemd(metadata):
'services': services,
},
}
@metadata_reactor.provides(
'monitoring/services',
)
def monitoring(metadata):
return {
'monitoring': {
'services': {
f'{name}.timer': {
'vars.command': f'/usr/lib/nagios/plugins/check_systemd_timer {name}'
}
for name in metadata.get('systemd-timers')
},
},
}