Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建每日弹性指数。我在弹性中浏览了索引模板。但是,这些设置和映射只能应用于新索引。就我而言,我需要基于特定模式的每日索引。怎么去?
使用logstash,您可以创建带有时间戳的索引(每天)
elasticsearch { hosts => [ "xxxxx:9200" ] index => "Test-%{+YYYY.MM.dd}" }