This is an OpenSearch Dashboards plugin that is used to visualize data in a dot plot.
You can find the different versions of the plugins on the releases page on Github.
Copy the link of the asset you want to install and run the following command inside
opensearch-dashboards/bin folder of your opensearch-dashboard instance.
opensearch-dashboards-plugin install <url>
In order to make changes to this plugin or contributing to it, please read the following sections.
You will need node.js and yarn to build the plugin. You can use
nvm to install the required node version
of this plugin.
- Download OpenSearch Dashboards source code for the version that matches the OpenSearch Dashboards version specified in opensearch_dashboards.json. You can download it from their release page or clone the repository. We recommend to follow the OpenSearch Dashboards' developers guide to configure the environment.
- Change your node version to the version specified in
.node-versioninside the OpenSearch Dashboards root directory. You can usenvmto do it. - Create a
pluginsdirectory inside the OpenSearch Dashboards source code directory, ifpluginsdirectory doesn't exist.cd OpenSearchDashboards mkdir plugins - Check out this repository into the
pluginsdirectory.git clone https://github.com/bitergia-analytics/dotplot-vis-plugin plugins - Install the dependencies.
cd OpenSearchDashboards/plugins/dotplot-vis-plugin yarn osd bootstrap
To build the plugin's distributable zip simply run yarn build.
Example output: ./build/dotplot-vis-plugin-0.2.0_2.11.0.zip
To run and test the built version of plugin run inside OpenSearch-Dashboards folder the following command:
yarn start