Hi guys,
I would like to set "index lifecycle management " on LOGSTASH output.
It would means that everything that goes via this output will get "ndex lifecycle management" which was created in Kibana.
This is how my OUTPUT looks like:
elasticsearch {
hosts => "http://elasticsearchserverxxx:9200/"
index => "%{application}-dev-%{+YYYY.MM.dd}"
user => "user"
password => "pasword"
ilm_enabled => true
ilm_policy => "DEV/TEST/PROD_Delete_old_data"
}
}
But any of new index doesn't apply this "DEV/TEST/PROD_Delete_old_data" policy. Do I have to set something differently? Thanks