HTTP Api Request to identify if the deployed ELK is OpenDistro

Hi everyone :),

I’m implementing a basic Kibana Client in my application to GET and POST Kibana dashboards. But the people who use our software can use official ELK deployments or OpenDistro ELK Deployments (AWS for example). Is any API Http Request available to check if the deployed cluster is OpenDistro or is the official ELK?

Something like:

https://<kibana_host>/api/about

That returns something like:

{
    "version": "OpenDistro-1.9.0"
}

Regards! And thank you in advance,
Carlos

curl https://‘node-in-the-cluster’:9200

Thank you for your answer,

I know that, but there is nothing in the response which differentiate a ELK cluster with an OpenDistro cluster. I’m searching for some api path which return different information if it is OpenDistro.

Regards,
Carlos

The output shows the build flavour. Is that not enough?

1 Like

I will try to compare the result of the build flavour with the OpenDistro AWS Service and a deployed OpenDistro on premises and see if I can see something in common :slight_smile:

Thanks. I think at the moment it is enough

Regards,
Carlos

Yes! The build flavour is enough! Thank you very much. @tony