check_zpool_space

This commit is contained in:
cronekorkn 2022-09-24 15:16:55 +02:00
parent 6c300f24f0
commit f48ea22a42
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
3 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,26 @@
#!/usr/bin/env python3
from subprocess import check_output
WARN_AT=80
CRITICAL_AT=90
output = []
exitcode = 0
for line in check_output(['/usr/sbin/zpool', 'list', '-Hpo', 'name,size,alloc']).decode().splitlines():
pool, size, alloc = line.split('\t')
used_percent = int(int(alloc)/int(size)*100)
if used_percent > CRITICAL_AT:
exitcode = max(exitcode, 2)
elif used_percent > WARN_AT:
exitcode = max(exitcode, 1)
if used_percent > WARN_AT:
output.append(
f'{pool} is {used_percent}% full'
)
print('\n'.join(output))
exit(exitcode)

View file

@ -14,6 +14,9 @@ files = {
for k, v in node.metadata.get('zfs/kernel_params').items() for k, v in node.metadata.get('zfs/kernel_params').items()
) + '\n', ) + '\n',
}, },
'/usr/lib/nagios/plugins/check_zpool_space': {
'mode': '0755',
},
} }
actions = { actions = {

View file

@ -34,6 +34,13 @@ defaults = {
'zfs-auto-snapshot': {}, 'zfs-auto-snapshot': {},
}, },
}, },
'monitoring': {
'services': {
'zpool space': {
'vars.command': f'/usr/lib/nagios/plugins/check_zpool_space',
},
},
},
'systemd-timers': { 'systemd-timers': {
'zfs-trim': { 'zfs-trim': {
'command': '/usr/lib/zfs-linux/trim', 'command': '/usr/lib/zfs-linux/trim',