Started testing , and found that , api _cluster/node/stats doesn't exist in our es installation ( 1.4)
I had to change it to _cluster/stats - get that running in cluster_get_stats in api.py.
Not sure if anybody else had similar issue.
Thanks
Sriram
-- Changes
-- Had to replace this method from _cluster/node/stats to _cluster/stats
def cluster_get_stats(conn):
path = "_cluster/stats? indices=true&os=true&process=true&jvm=true&network=true&transport=true&http=true&fs=true&thread_pool=true"
print path
resp = conn.get(path)
return resp
Started testing , and found that , api _cluster/node/stats doesn't exist in our es installation ( 1.4)
I had to change it to _cluster/stats - get that running in cluster_get_stats in api.py.
Not sure if anybody else had similar issue.
Thanks
Sriram
-- Changes
-- Had to replace this method from _cluster/node/stats to _cluster/stats
def cluster_get_stats(conn):
path = "_cluster/stats? indices=true&os=true&process=true&jvm=true&network=true&transport=true&http=true&fs=true&thread_pool=true"
print path
resp = conn.get(path)
return resp