Tile Map geo.location字段在Kibana 4.0.1中的GeoHash聚合下不存在

时间:2015-04-15 21:36:40

标签: visualization logstash kibana kibana-4

我正在尝试在Kibana 4.0.1中使用平铺地图可视化。

我可以在Discover部分看到geoip.location数据,但当我将其视为Tile Map时,我选择Geo Coordinates桶类型,然后选择聚合类型GeoHash,然后当我转到Field它是空白的。

  • Kibana 4.0.1
  • Logstash 1.4.2-1-2c0f5a1
  • Elasticsearch 1.4.4
  • 在Debian 7 64bit上运行

这是我的logstash配置:

    input {
    udp {
      port => 5514
      type => cisco
    }
}
filter {
  grok {
    match => { "message" => "\<%{NUMBER:num}\>%{NUMBER:seq}: \*%{SYSLOGTIMESTAMP:date}: \%SEC-6-IPACCESSLOGP: list Internet\-In\-%{WORD:acl_ver} denied %{WORD:protocol} %{IP:src}\(%{NUMBER:sport}\) \-\> %{IP:dest}\(%{NUMBER:dport}\), %{INT:hitcnt}" }
    add_tag => ["grok_match", "cisco_acl_message"]
    remove_field => [ "message" ]
  }
  geoip {
   source => "src"
   target => "geoip"
   add_tag => ["geoip"]
   database => "/etc/logstash/GeoLiteCity.dat"
 }
}
output {
  elasticsearch { 
    host => localhost
    index => [ "firewall-%{+YYYY.MM.DD}" ]
  }
}

这是日志记录的一个例子:

{
  "_index": "firewall-2015.04.105",
  "_type": "cisco",
  "_id": "dJhGF6RtQuGXtlBTRCu2mQ",
  "_score": null,
  "_source": {
    "@version": "1",
    "@timestamp": "2015-04-15T21:06:08.357Z",
    "type": "cisco",
    "host": "172.17.10.1",
    "num": "190",
    "seq": "1872",
    "date": "Apr 15 21:08:05.878",
    "acl_ver": "20150223",
    "protocol": "tcp",
    "src": "94.102.51.96",
    "sport": "26820",
    "dest": "12.34.56.78",
    "dport": "5900",
    "hitcnt": "1",
    "tags": [
      "grok_match",
      "cisco_acl_message",
      "geoip",
      "_grokparsefailure",
      "geoip"
    ],
    "geoip": {
      "ip": "94.102.51.96",
      "country_code2": "NL",
      "country_code3": "NLD",
      "country_name": "Netherlands",
      "continent_code": "EU",
      "region_name": "07",
      "city_name": "Amsterdam",
      "postal_code": "1000",
      "latitude": 52.349999999999994,
      "longitude": 4.916699999999992,
      "timezone": "Europe/Amsterdam",
      "real_region_name": "Noord-Holland",
      "location": [
        4.916699999999992,
        52.349999999999994
      ],
      "coordinates": [
        4.916699999999992,
        52.349999999999994
      ]
    }
  },
  "fields": {
    "@timestamp": [
      1429131968357
    ]
  },
  "sort": [
    1429131968357
  ]
}

我缺少什么想法?

ANSWER

在Alain指出我正确的方向后,我开始研究场地映射。这是我如何去做的:

首先,我检查了geoip字段类型(我的索引名为firewall*

curl http://localhost:9200/firewall*/_mapping/cisco/field/geoip.location?pretty

这回来了:

{
  "firewall-2015.04.107" : {
    "mappings" : {
      "cisco" : {
        "geoip.location" : {
          "full_name" : "geoip.location",
          "mapping":{"location":{"type":"float"}}
        }
      }
    }
  }
}

float类型位置是我无法添加平铺地图可视化的原因。我需要将其更改为geo_point

经过大量挖掘后,我发现将location类型的映射更改为geo_point的一种方法是使用输出模板。我从

复制了默认的elasticsearch_templte.json文件
/opt/logstash/lib/logstash/outputs/elasticsearch/elasticsearch-template.json

   /etc/logstash/templates/elasticsearch-firewall.json

编辑它并将模板从logstash*更改为firewall*(或者您的索引名称模式)       "template" : "firewall*"

编辑logstash配置文件并将输出更改为:

output {
  elasticsearch { 
    host => localhost
    index => [ "firewall-%{+YYYY.MM.DD}" ]
    template => "/etc/logstash/templates/elasticsearch-firewall.json"
    template_name => "firewall"

  }
}

删除firewall*索引。

警告:这将删除所有现有的可搜索数据!如果此数据很重要,您需要找到一种方法来动态更改字段类型而不删除索引。我在谷歌搜索中看到了这一点,所以我知道这是可能的。

curl -XDELETE http://localhost:9200/firewall*

之后我重新启动了logstash和elasticsearch。

一旦我再次开始接收日志,我再次检查了映射

 curl http://localhost:9200/firewall*/_mapping/cisco/field/geoip.location?pretty
{
  "firewall-2015.04.107" : {
    "mappings" : {
      "cisco" : {
        "geoip.location" : {
          "full_name" : "geoip.location",
          "mapping":{"location":{"type":"geo_point"}}
        }
      }
    }
  }
}

查看位置类型现在如何geo_point: - )

现在我可以添加Tile Map可视化。

2 个答案:

答案 0 :(得分:1)

Kibana正在使用该字段的映射来确定它是否是geo_point,因此可以在地图中使用。

因此,您应检查映射并将字段更改为geo_point。

请参阅the doc

答案 1 :(得分:0)

只想将一些有用的信息提取到单独的答案中 - 也许它对某人有用。

Logstash elasticsearch template仅匹配带有“logstash-”前缀的模板。这就是为什么在没有自定义模板的情况下使用不同的索引名称(如防火墙*)时,geoip.location字段是double,而不是geo_point。

如果您需要更多信息,请检查此问题 - https://github.com/elastic/logstash/issues/3137