Py学习  »  Elasticsearch

不考虑模板和映射的ElasticSearch索引

pkaramol • 6 年前 • 1770 次点击  

我的自定义模板中有以下字段:

"srcBytes": {"type": "integer"},
"dstBytes": {"type": "integer"},

更重要的是,在检索特定索引的映射时,这似乎被应用:

GET my_index-raw-data-2019.02.11/_mapping



      },
      "srcBytes": {
        "type": "integer"
      },
        "dstBytes": {
        "type": "integer"

那么为什么 kibana 将这些字段显示为 t ?

enter image description here

enter image description here

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/30717
 
1770 次点击  
文章 [ 1 ]  |  最新文章 6 年前
Val
Reply   •   1 楼
Val    6 年前

你可能只需要 refresh your index pattern 在Kibana中,它从基础索引中获取最新的映射。