logstash - Get elasticsearch indices before specific date -
my logstash service sends logs elasticsearch daily indices.
elasticsearch { hosts => [ "127.0.0.1:9200" ] index => "%{type}-%{+yyyy.mm.dd}" }
does elasticsearch provides api lookup indices before specific date?
for example, how indices created before 2015-12-15
?
the time care indexes created when want close/delete them using curator. curator has "age" type features built in, if that's use case.
Comments
Post a Comment