gpt4 book ai didi

elasticsearch - logstash geoip.location 映射到 geo_point 不工作

转载 作者:行者123 更新时间:2023-11-29 02:53:56 28 4
gpt4 key购买 nike

我可以在我的默认映射中看到 geoip.location 映射到 geo_point 类型:

GET myserver:9200/_template
{
"logstash": {
"order": 0,
"version": 50001,
"template": "logstash-*",
"settings": {
"index": {
"refresh_interval": "5s"
}
},
"mappings": {
"_default_": {
"dynamic_templates": [
{
"message_field": {
"path_match": "message",
"mapping": {
"norms": false,
"type": "text"
},
"match_mapping_type": "string"
}
},
{
"string_fields": {
"mapping": {
"norms": false,
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
},
"match_mapping_type": "string",
"match": "*"
}
}
],
"_all": {
"norms": false,
"enabled": true
},
"properties": {
"@timestamp": {
"include_in_all": false,
"type": "date"
},
"geoip": {
"dynamic": true,
"properties": {
"ip": {
"type": "ip"
},
"latitude": {
"type": "half_float"
},
"location": {
"type": "geo_point"
},
"longitude": {
"type": "half_float"
}
}
},
"@version": {
"include_in_all": false,
"type": "keyword"
}
}
}
},
"aliases": {}
}
}

我在 logstash 过滤器中有这个以从我的字段之一获取 geoip 数据:

geoip {
source => "myField"
add_field => [ "[geoip][coordinates]", "%{[geoip][longitude]}" ]
add_field => [ "[geoip][coordinates]", "%{[geoip][latitude]}" ]
}
mutate {
convert => [ "[geoip][coordinates]", "float"]
}

但是,当它进入 ES 时,位置字段是一个“数字” enter image description here

此外,如果我尝试使用 kibana map 可视化,它会显示“无兼容字段”

为什么默认映射不起作用?

编辑:我还尝试了 geoip { source => "myfield"} 因为我的默认映射使用的是位置而不是坐标,但这没有用。

我也摆脱了变异并尝试了这个,但它也不起作用:

geoip {
source => "myfield"
add_field => [ "[geoip][location]", "%{[geoip][longitude]}" ]
add_field => [ "[geoip][location]", "%{[geoip][latitude]}" ]
}

最佳答案

您可能只是打错了字(第 1 点),但还有其他几件事需要注意。

  1. 您正在 logstash 中使用 geoip.coordinates 并在 _mapping 中使用 geoip.location
  2. 您需要删除 convert => [ "[geoip][coordinates]", "float"] - 这是错误的。
  3. 一旦 ES 中的某个字段中有数据,您就无法将其转换为 geo_point 而不使用新映射重新索引您的数据(如果您处于开发阶段,通常意味着删除任何索引并重新插入您的数据)。
  4. 任何映射更改后,kibana 设置中都会有一个按钮来重新加载您的映射。

关于elasticsearch - logstash geoip.location 映射到 geo_point 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42772022/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com