Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 924 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 924 Bytes

Kibana Sankey Diagram Plugin

This is a sankey diagram visType plugin for Kibana 7.x.

This plugin was developped from elastic/kibana#4832.

Here is an example:

Sankey

Install

git clone https://github.com/uniberg/kbn_sankey_vis.git sankey_vis
cd sankey_vis
npm install

Uninstall

bin/kibana plugin  --remove kbn_sankey_vis

Building a Release

Building a release only means packaging the plugin with all its dependencies into a zip archive. Important is to put the plugin in a folder called kibana before zipping it. The following steps would produce a release of the current head master branch.

mkdir kibana
git clone https://github.com/uniberg/kbn_sankey_vis.git sankey_vis
cd sankey_vis
[optional] git checkout -branch
npm install --production
cd ../..
zip -r sankey_vis-<version>.zip kibana --exclude ./kibana/sankey_vis/.git\*