We modify our own kibana instance. Recently I decided to add a foo plugin in the source's plugin directory. Will this foo plugin be bundled if I do a "npm run build" ??? That is, will I need to manually install it later, or will it automatically be part of our kibana instance.
npm run build will not bundle your plugin with Kibana, but you can do this by doing the following:
build kibana with npm run build
extract the tarball or zip archive for the platform you are targeting
install your plugin with bin/kibana-plugin install file:/path/to/your/plugin
recreate the archive after plugin installation completes
If you want to support multiple platforms you'll have to do the last three steps for each platform, but I assume you won't need more than one configuration.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.