-
Notifications
You must be signed in to change notification settings - Fork 0
Developer guide (Debian)
- Install NVM
- Install yarn
- Download Kibana sources
- Download plugin sources
- Install dependencies
- Launch ElasticSearch and Kibana
- Building the plugin distributable
note: this guide was tested on Debian installation. It may or may not work for other Linux distributions or other operation systems.
apt-get install build-essential libssl-dev
curl https://raw.githubusercontent.com/creationix/nvm/v0.25.0/install.sh | bash
source ~/.profile
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn
git clone https://github.com/elastic/kibana.git kibana
cd kibana
(optional) Checkout a specific version of Kibana
git checkout your_version_number
mkdir plugins && cd plugins
git clone https://github.com/PanDAWMS/InVEx-ParCoords-Kibana.git invex-parcoords
cd invex-parcoords
Run nvm use
to install required node version using Node Version Manager.
Run yarn kbn bootstrap
to install dependencies. This might take a while, so take a nice warm cup of tea, while it is installing. ☕
Open a separate console window and run the following code to launch the ElasticSearch instance:
cd kibana
nvm use
yarn es snapshot
Then, open another console window and run the following to launch Kibana:
cd kibana/plugins/invex-parcoords
nvm use
NODE_OPTIONS="--max-old-space=8000" yarn start
(Use this in case you want to send this plugin to somebody, or install it on any instance of Kibana.
cd kibana/plugins/invex-parcoords
nvm use
yarn build
Your plugin will be located in kibana/plugins/invex-parcoords/build
folder in a zip-archive.
Please refer to plugin installation guide page for installation instructions.