I'm using Python script that fetch data from Rally API, manipulate it and send to Elasticsearch. I'm trying to figure how to find my exist index/s in script code. My ES instance is quite simple:
es = Elasticsearch([{'host': 'myIP', 'port': 9200}])
I cannot find where's exist index in this instance
My purpose is to state a condition for updating my index/s data
Any idea?
tnx