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
  }
}
时间: 2024-12-11 05:33:18

logstash的index值可以为中文的相关文章

dom自定义属性 兼容 index值获取

function getIndex(Eve,obj){ for(var i = 0;i<obj.length;i++){ obj[i].setAttribute("index",i);//设置自定义属性的值 } if(window.addEventListener){ obj[0].parentNode.addEventListener(Eve,function(e){ alert(e.target.getAttribute("index")); },fals

JS动态改变select选择变更option的index值

document.getElementById("louyuming").options[0].selected=true; function jsSelectIsExitItem(objSelect, objItemValue) {             var isExit = false;             for (var i = 0; i < objSelect.options.length; i++) {                 if (objSele

FCKeditor 2.6.4.1 初始化值不能显示中文问题

最近在学习PHP加入FCKeditor 在线编辑器,发现在初始化Value赋值时,英文可以显示出来,中文怎么都显示不出来,连乱码都不显示. 经过漫长的探索,终于找到原因了! 在fckeditor目录下有个fckeditor_php5.php文件,里面有个“$HtmlValue = htmlspecialchars( $this->Value )” 这个$HtmlValue就是控制着编辑器初始显示的字符.为什么中文不显示呢,原因就在于htmlspecialchars()函数.这个函数定义是”htm

flask,flask-restful接口返回值无法显示中文

解决方法: flask 接口无法显示中文,添加: app= Flask(__name__) app.config['JSON_AS_ASCII'] =False flask-restful 接口无法显示中文,添加: app= Flask(__name__) app.config.update(RESTFUL_JSON=dict(ensure_ascii=False)) 原文地址:https://www.cnblogs.com/peak911/p/11727668.html

JS闭包获取li的index值

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> li{ background-color: red; } </style> <script type="text/j

【转】asp.net Cookie值中文乱码问题解决方法

来源:脚本之家.百度空间.网易博客 http://www.jb51.net/article/34055.htm http://hi.baidu.com/honfei http://tianminqiang.blog.163.com/blog/#m=0 ============================================================================== cookie中怎么保存中文 在用cookie保存用户名的时候,发现cookie值不能存中文

python字典中键值对的值为中文,打印成转义字符,怎么解决

今天是2019-10-02,学习代码第二天. python字典中键值对中有中文,打印的时候,发现成转义字符了.查了好久,解决.记录一下.useful. 今日份代码: 1 #!/usr/bin/python 2 # -*- coding:utf-8 -*- 3 # 字典和列表的区别 4 # 列表是有序的对象集合,字典是无序的对象集合 5 # 字典的特点,字典用{}定义,使用键值对存储数据,键值对间用,分开 6 # 键--key,索引 值--value,数据 键和值间用:分开 键--唯一的,只能取字

logstash入门

此文只是logstash的简单入门,作者也只是简单了解logstash,本文只能简单介绍logstash,对完全不懂logstash是啥的人做个引导,因为我就是这样过来的~ 1.logstash是什么?有什么用? 在网上搜索logstash,搜索结果中logstash一般是和elasticsearch.kibana一起讲的.感觉似乎logstash.elasticsearch.kibana一定要一起用,其实并不是这样的.logstash是用来收集日志用的,完全可以单独使用,只是这几个组合在一起疗

Logstash语法常用案例解析(一)

摘要 简述logstash的常用插件,以及简单的使用案例 一:基础运行 建议使用supervisor来管理ELK中的各个组件,方便同一管理 安装 https://www.aolens.cn/?p=809      有讲解 提供一个常用的配置: [program:logstash] command=/opt/logstash/bin/logstash -f /opt/logstash/conf/index.conf numprocs=1 ;开几个进程 dirrectory=/opt/logstas