Kibana fails to start with FATAL error with region.layers

Hello,

I try to add a custom region map in kibana 7.4.2.

I followed the procedure which is on the site https://www.elastic.co/fr/blog/custom-region-maps-in-kibana-6-0.

I have access to my file geojson with http://localhost:8000/aus_state.geojson and i modified the file kibana.yml like that :

regionmap:
layers:
- name: "Australian States"
url: "http://localhost:8000/aus_state.geojson"
attribution: "https://exploratory.io/maps"
fields:
- name: "STATE_NAME"
description: "State Name"

But when i try to start kibana, I have this fatal error :

log [09:09:14.551] [fatal][root] { Error: "regionmap.layers" setting was not applied. Check for spelling errors and ensure that expected plugins are installed.
at KbnServer._default (D:\ELK\kibana-7.4.2-windows-x86_64\src\legacy\server\config\complete.js:90:17) code: 'InvalidConfig', processExitCode: 64 }
log [09:09:14.555] [info][plugins-system] Stopping all plugins.
log [09:09:14.556] [info][data][plugins] Stopping plugin
**** log [09:09:14.557] [info][plugins][translations] Stopping plugin
log [09:09:14.557] [info][plugins][security] Stopping plugin

**** FATAL Error: "regionmap.layers" setting was not applied. Check for spelling errors and ensure that expected plugins are installed.

If someone have an idea... Thanks

This setting moved to map.regionmap.layers: https://www.elastic.co/guide/en/kibana/7.4/settings.html#regionmap-settings

Just nest your settings into a top level map key, then it should get picked up correctly.

Thank you very much :slight_smile:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.