Elasticsearch:策展人不工作

Elasticsearch : Curator does not work

我正在试用馆长提供的基本代码

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'

我错过了什么?

我猜你的curator版本不是4.0。检查您正在使用的版本的文档。例如 3.5.1:http://curator.readthedocs.io/en/v3.5.1/