Upon initial loading of Kibana, the page takes approximately one minute to load. Using dev tools, the page hangs due to trying to load this URL:
https://tiles.elastic.co/v2/manifest?my_app_version=5.2.0
We are in a firewalled environment and have no need for tilemaps service. I checked to see if there is a way to disable tilemaps but do not see one. As a workaround we modified this JS script and the initial page loads much quicker:
Modified this file: /usr/share/kibana/src/server/config/schema.js
Changed to below:
manifestServiceUrl: _joi2['default'].string()['default']('http://localhost/'),
From this:
manifestServiceUrl: _joi2['default'].string()['default']('https://tiles.elastic.co/v2/manifest'),
Apologies if there is an answer or it's listed in the documentation but I did not see it unfortunately. Thank you in advance.
Upon initial loading of Kibana, the page takes approximately one minute to load. Using dev tools, the page hangs due to trying to load this URL:
https://tiles.elastic.co/v2/manifest?my_app_version=5.2.0
We are in a firewalled environment and have no need for tilemaps service. I checked to see if there is a way to disable tilemaps but do not see one. As a workaround we modified this JS script and the initial page loads much quicker:
Modified this file: /usr/share/kibana/src/server/config/schema.js
Changed to below:
manifestServiceUrl: _joi2['default'].string()['default']('http://localhost/'),From this:
manifestServiceUrl: _joi2['default'].string()['default']('https://tiles.elastic.co/v2/manifest'),Apologies if there is an answer or it's listed in the documentation but I did not see it unfortunately. Thank you in advance.