add oj-backend health check

This commit is contained in:
zema1
2017-12-01 19:03:30 +08:00
parent ee89df9ff2
commit 7cb8a83bba
2 changed files with 14 additions and 0 deletions

11
deploy/health_check.py Normal file
View File

@@ -0,0 +1,11 @@
import xmlrpclib
if __name__ == "__main__":
try:
server = xmlrpclib.Server('http://localhost:9005/RPC2')
info = server.supervisor.getAllProcessInfo()
error_states = list(filter(lambda x: x["state"] != 20, info))
exit(len(error_states))
except Exception as e:
print(e.with_traceback())
exit(1)