Suddenly my kibana throw error in map visualization:
Region map: Could not retrieve manifest from the tile service: status -1
old visualization still can display the map but with warning trigger follow up, while
creating new map visualization will leading to blank setting for Layers
After updating,searching,and reading . i decide to use custom WMS server with custom region mapping.
i try use some wms server like:
with proper OGC setting, i can load those WMS in old and new visualization. so custom WMS is done
next is for Layers, i try to follow exactly described on this: https://www.elastic.co/blog/custom-region-maps-in-kibana-6-0
the only different with my setup is , my metric aggregation is Count
its more simple actually, i only want to count country name/country code access and display it
http-server(nodejs) already display some log like "OPTIONS /world.geojson"
that i suppose confirm kibana can access the geojson file
my kibana.yml (added setting) :
regionmap:
layers:
- name: "Custom Region"
url: "http://localhost/world.geojson"
attribution: "Maps by somewmsprovider, Layers by exploratory"
fields:
- name: "ISO_A2"
description: "Country Code"
- name: "WB_A2"
description: "Country Code2"
- name: "NAME"
description: "Country Name"
i try to use(match) geoip_country_code2,geoip_country_code3,geoip_country_name keyword (this is what i used in old visualization, it worked with default map) to match Geojson ISO_A2,WG_A2,NAME from : https://download2.exploratory.io/maps/world.zip
some of my keyword
But after all of this , it still show nothing on my map
no inner join whatsoever
Did i miss something? or do anyone know what happen in first place (leading default kibana map service error) ??