2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 17:43:14 +00:00
confluent/bin/nodepower
Jarrod Johnson 65af925b2d Add quick and dirty example of a command
'nodepower' is not yet 'rpower' like, but it's a quick
demonstration of using the python confluent client library.  It
only supports unix socket as written
2014-03-04 21:09:17 -05:00

17 lines
373 B
Python

#!/usr/bin/env python
import os
import sys
path = os.path.dirname(os.path.realpath(__file__))
path = os.path.realpath(os.path.join(path, '..'))
sys.path.append(path)
import confluent.common.client as client
node = sys.argv[1]
session = client.Command()
for res in session.read("/node/{0}/power/state".format(node)):
print("%s: %s" % (node, res['state']['value']))