I'm seeing in Kibana 8.12.2 that the prefix_path
is being dropped by Dev Tools Console commands.
i.e. the "/kibana" in the example below.
kibana.yml
elasticsearch.hosts: "server.mydomain.com:443/kibana
In Dev Tools Console:
v7.17.15 (correct)
GET _cluster/health
produces GET /kibana/_cluster/health?pretty=true
v8.12.2 (incorrect)
GET _cluster/health
produces GET /_cluster/health?pretty=true
I am obviously running kibana behind a proxy. All other apps in Kibana appear to be working fine, only Dev Tools Console seems to have an issue so far.
I've tried every combination in the kibana.yml file of:
server.publicBaseUrl: "https://server.mydomain.com/kibana"
server.basePath: /kibana
server.rewriteBasePath: false