Installing a custom plugin for Kibana on AWS ElasticSearch Instance

I want to know if it is possible to add a custom plugin for Kibana running on an AWS instance, as indicated in this one .

At the command line we can enter

bin/kibana-plugin install some-plugin

But, in the case of the AWS ElasticSearch Service, there is no command line / terminal, because it is just a service, and we do not get SSH to it. We just have a management console. How to add a custom kibana plugin in this scenario?

+5
source share
1 answer

From AWS Plugins Supported by Elasticsearch :

Amazon ES comes with several plugins that are available from the Elasticsearch community. Plugins are automatically deployed and you succeeded.

The page above has all the plugins supported in each version of ES.

Side note, Kibana is installed and fully managed, but works as a Node.js application (and not as a plugin).

0
source

Source: https://habr.com/ru/post/1263871/


All Articles