Unable to view any data in Kibana maps

Hello ,

I am unable to view any datapoints in Kibana maps from my index : -

I see from the mappings that it is marked as Geopoint

      "clientgeoip": {
        "properties": {
          "geo": {
            "properties": {
              "geo": {
                "properties": {
                  "city_name": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  },
                  "continent_code": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  },
                  "country_iso_code": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  },
                  "country_name": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  },
                  "location": {
                    "properties": {
                      "lat": {
                        "type": "float"
                      },
                      "lon": {
                        "type": "float"
                      }
                    }
                  },
                  "postal_code": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  },
                  "region_iso_code": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  },
                  "region_name": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  },
                  "timezone": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  }
                }
              },
              "ip": {
                "type": "text",
                "fields": {
                  "keyword": {
                    "type": "keyword",
                    "ignore_above": 256
                  }
                }
              },
              "location": {
                "type": "geo_point"
              }
            }
          }
        }

Could anyone let me what can be done here?

Hello @ramenon

Welcome to the community!!

The reason could be that in the time duration selected of 4 months could you please check if there is data available in the dataview because of which we do not see any information on the maps or the field which is selected has geopoint field?

Tried for kibana sample data flight and do not see any issue :

Thanks!!

2 Likes

@Tortoise Thank you for your help :slight_smile:

I wasn’t aware of Data View feature in Kibana (started using it few days ago) and I could see the field was empty. I corrected the geoip field in my logstash.conf and now I can see the data populate in map , thanks again for your help!

1 Like