首页 > 代码库 > logstash的index值可以为中文
logstash的index值可以为中文
logstash中的 output中 有index属性,表示在elk中的主键标识。
在实际应用中,index的值不能为大写字母,可以是小写字母、数字、下划线、中文。
这里重点强调index为中文时,注意linux的编码必须为utf-8,以下为例子:
input { } filter { } output { elasticsearch { action => "index" hosts => "10.19.105.189:9200" user => "elastic" password => "changeme" //支持中文,但是要确保Xshell的字符集类型为utf-8类型 index => "测试" } stdout{ codec => rubydebug } }
logstash的index值可以为中文
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。