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

Kibana数据可视化

时间:2019-11-25 13:46:42      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:beginning   cat   color   名称   使用   logs   source   temp   pos   

Kibana数据可视化

1,3.1使用logstash导入数据的问题

会出现错误提示:

[location] is defined as an object in mapping [doc] but this name is already used for a field in other types

错误原因是创建的mapping为accident,但是默认覆盖的mapping默认为doc,与之前创建的不一样;

本机ELK版本为6.2.4;logstash对于处理过的数据不会重复处理,需要删除data文件夹里面的内容,之后重复导入;

处理办法,修改csv_to_es.conf,删除了其中的 type内容;

input {
  file {
    path => "/Users/stono/Downloads/LK5/Chapter3/source/accident*"
    start_position => "beginning"
  }
}

修改template.json,mapping下面doc名称为doc;

{
  "template" : "accident*",
  "mappings" : {
    "doc": {
      "properties": {
        "location": { "type": "geo_point" },
        "involvedCount": { "type": "double" }
      }        
    }
  }
}

logstash启动之后不会自动退出,出现可以导入的文件,会自己进行导入; 

 

Kibana数据可视化

标签:beginning   cat   color   名称   使用   logs   source   temp   pos   

原文地址:https://www.cnblogs.com/stono/p/11926987.html

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