wip
This commit is contained in:
parent
9b9f443b9b
commit
05faac8a30
3 changed files with 32 additions and 0 deletions
12
bundles/systemd-timers/files/check_systemd_timer
Normal file
12
bundles/systemd-timers/files/check_systemd_timer
Normal 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
|
|
@ -2,3 +2,7 @@ svc_systemd['cron'] = {
|
||||||
'enabled': False,
|
'enabled': False,
|
||||||
'running': False,
|
'running': False,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
files['/usr/lib/nagios/plugins/check_systemd_timer'] = {
|
||||||
|
'mode': '0755',
|
||||||
|
}
|
||||||
|
|
|
@ -48,3 +48,19 @@ def systemd(metadata):
|
||||||
'services': services,
|
'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')
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue