Hello,
I am trying to implement rollover mechanism to my environments. Let me explain as is and to be design;
Log data stores in syslog-%{+YYYY.MM.dd} indices right now. I keep data for 3 days. No rollover - No warm or cold phase. It is going to delete phase directly. So this is the as is design and I have
syslog-2023-01-29
syslog-2023-01-30
syslog-2023-01-31
And I made some changes our ilm policy and apply rollover settings. It is running but there is a point;
I need to separate index for everyday. So I added these ILM pattern settings in my logstash conf shown as below
ilm_rollover_alias => "syslog"
ilm_pattern => "{now/d}-000001"
ilm_policy => "timeseries-syslog"
Result and Question;
syslog-2023-02-01-000001 => it is ok
syslog-2023-02-01-000002 => Why this pattern starts from 000002 ? How can I provide to start from 000001 when every new index created ? Is it normal behavior ?
Thank You