Du ser en gammel version af denne side. Se den nuværende version.

Sammenlign med nuværende Vis sidehistorik

Version 1 Næste »

As nothing came on the "Tile Maps, all looking like:

I found out the mapping for the geo.location field was wrong (look here: http://stackoverflow.com/questions/29661372/tile-map-geo-location-field-not-present-under-geohash-aggregation-in-kibana-4-0)

root@elkserver1:/etc/logstash/conf.d# curl http://localhost:9200/filebeat-2016.12.28/_mapping/apache/field/geoip.location?pretty
{
  "filebeat-2016.12.28" : {
    "mappings" : {
      "apache" : {
        "geoip.location" : {
          "full_name" : "geoip.location",
          "mapping" : {
            "location" : {
              "type" : "float"
            }
          }
        }
      }
    }
  }
}
root@elkserver1:/etc/logstash/conf.d#

This should (according to the article not be:

"mapping" : {"location" : {"type" : "float"}}

but

"mapping":{"location":{"type":"geo_point"}}

 

....so we need to change this:

 

  • Ingen etiketter