我正在尝试策展人的基本代码
http://curator.readthedocs.io/en/4.0/examples.html
我试试
import elasticsearch
import curator
if __name__ == '__main__':
client = elasticsearch.Elasticsearch([{'host': "http://localhost", 'port':9200}])
ilo = curator.IndexList(client)
ilo.filter_by_regex(kind='prefix', value='logstash-')
print ilo
但是我得到了
ilo = curator.IndexList(client)
AttributeError: 'module' object has no attribute 'IndexList'
我错过了什么?
答案 0 :(得分:2)
我猜您的策展人版本不是4.0。查看您正在使用的vesion的文档。例如,对于3.5.1:http://curator.readthedocs.io/en/v3.5.1/