Elasticsearch: куратор не работает

Я пробую основной код от куратора

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'

что мне не хватает?

1 ответ

Решение

Я думаю, ваша версия куратора не 4.0. Проверьте документацию используемой вами версии. Например для 3.5.1: http://curator.readthedocs.io/en/v3.5.1/

Другие вопросы по тегам