Merge pull request #1 from FlorianHeigl/patch-1
Nagios Compliant output
This commit is contained in:
commit
c0f3e8813d
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ def get_failed_units():
|
||||||
|
|
||||||
system_state = get_system_state()
|
system_state = get_system_state()
|
||||||
if system_state in ['running', 'starting']:
|
if system_state in ['running', 'starting']:
|
||||||
print('System OK: {}'.format(system_state))
|
print('OK: {}'.format(system_state))
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
print('System NOT OK: {}, failed: {}'.format(system_state, " ".join(get_failed_units())))
|
print('CRIT: {}, failed: {}'.format(system_state, " ".join(get_failed_units())))
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue