petrolis
petrolis

Reputation: 143

logstash create strange index name

i use logstash 7.9.3 and with this version i have problems to create right index name like logstash-2021.01.01. I need first 9 days of month with 0.

with this config logstash-%{+yyyy.MM.dd} result is => logstash-2021.01.01-000001

with this config logstash-%{+yyyy.MM.d} result is => logstash-2021.01.1

input {
   redis {
       host => "someip_of_redis"
       data_type => "list"
       key => "logstash"
       codec => "json"
   }
}

output {
   elasticsearch {
       hosts => ["http://someip_of_elastic:9200"]
       index => "logstash-%{+yyyy.MM.dd}"
   }
}

Thank you in advance

Upvotes: 1

Views: 259

Answers (1)

petrolis
petrolis

Reputation: 143

to disable it, i add to config following ilm_enabled => false

input {
   redis {
       host => "someip_of_redis"
       data_type => "list"
       key => "logstash"
       codec => "json"
   }
}

output {
   elasticsearch {
       hosts => ["http://someip_of_elastic:9200"]
       ilm_enabled => false
       index => "logstash-%{+yyyy.MM.dd}"
   }
}

Upvotes: 2

Related Questions