你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
strglee
赞同来自:
template: { "template" : "syslog*", "version" : 50001, "settings" : { "index.refresh_interval" : "5s", "index.number_of_replicas" : 0, "index.number_of_shards" : 1 }, ... } logstash: output { elasticsearch { hosts => ["localhost:9200"] index => "syslog%{+YYYY.MM.dd}" template => "path_to_your_template.json" template_name => "syslog*" template_overwrite => true } }
PUT /my_temp_index { "settings": { "number_of_shards" : 1, "number_of_replicas" : 0 } }
huzhongyong
要回复问题请先登录或注册
IT新人
2 个回复
strglee
赞同来自:
有两种方案
1. 通过template模板
https://www.elastic.co/guide/e ... plate
2. 请求接口设置
huzhongyong
赞同来自: