ELK配置之,filebeat更改自定义索引名称
ELK配置之,filebeat更改自定义索引名称
filebeat客户端添加成功后,在kibana查看添加的索引,默认情况下,当索引生命周期管理(ILM)被禁用或不受支持时,Filebeat 使用时间序列索引。索引命名格式为 filebeat-7.16.1-yyyy.MM.dd。
一台filebeat还好,可以清楚的分辨,但当多台机器添加后,共用一个索引名,无法分辨,这时需要自定义索引名称。有两种方法更改索引名称。
方法一:
在filebeat.yml文件中,配置setup.template.name和 setup.template.pattern选项以匹配新名称。
注:从7.0版本开始,索引生命周期管理(ILM)默认是开启状态,当开启状态时候,setup.template.name和 setup.template.pattern两个参数不生效,所以还需要配置关闭ILM,即setup.ilm.enabled: false
官方参考文档:https://www.elastic.co/guide/en/beats/filebeat/current/change-index-name.html
方法二:
官方参考文档:https://www.elastic.co/guide/en/beats/filebeat/current/ilm.html
Last updated