Skip to content

Instantly share code, notes, and snippets.

@jDmacD
Last active July 14, 2017 10:33
Show Gist options
  • Save jDmacD/48c04ec6b2a854437a7ff7331fe03f46 to your computer and use it in GitHub Desktop.
Save jDmacD/48c04ec6b2a854437a7ff7331fe03f46 to your computer and use it in GitHub Desktop.
import qb
import sys
supervisor_ip = str(sys.argv[1])
res = qb.ping(supervisor=supervisor_ip, asDict=True)
if bool(res) == False:
sys.exit("Qube Supervisor is down")
else:
print(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment