码迷,mamicode.com
首页 > 其他好文 > 详细

logstash的index值可以为中文

时间:2017-03-29 15:46:47      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:hang   主键   last   类型   host   hosts   utf-8   bsp   code   

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值可以为中文

标签:hang   主键   last   类型   host   hosts   utf-8   bsp   code   

原文地址:http://www.cnblogs.com/wll-cs/p/6639875.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!