I am playing with Opendistro Elastic + Kibana. I have followed this guide to run these services locally via docker compose: docker-compose.yml. All starts fine and after pushing some data to elastic, I am able to see it via Kibana.
Elasticsearch REST API works fine. However any attempt to access Kibana REST API fails with 404:
> curl -X GET -u admin:admin 'http://localhost:5601/api/features'
{"statusCode":404,"error":"Not Found","message":"Not Found"}
My understanding was that Opendistro is a fork of an original ELK (before recent license changes). I was therefore expecting that features present in Kibana prior to 7.11 would be present in Opendistro.
Does Opendistro Kibana expose any REST API? Is there any functionality in Opendistro similar to this one spaces-api-copy-saved-objects? I am looking into a way to manage spaces/ tenants via REST API.