So you want to contribute code to this project? Excellent! We're glad you're here. Here's what you need to do.
- Git clone OpenSearch-Dashboard for the version that matches the version you want to use OpenSearch-Dashboards
- Change your node version to the version specified in
.node-version
inside the OpenSearch Dashboards root directory. (using nvm can help for that) - Change directory into
OpenSearch-Dashboards
and git Clone the Observability-Dashboard into theplugins/
directory. - Run
yarn osd bootstrap
insideOpenSearch-Dashboards
.
Ultimately, your directory structure should look like this:
.
├── OpenSearch-Dashboards
│ └── plugins
│ └── dashboards-observability
To build the plugin's distributable zip simply run yarn build
.
The output file : ./build/observabilityDashboards-?.?.?.zip
(?.?.?
stands for the version number)
Cd back to OpenSearch-Dashboards
directory and run yarn start
to start OpenSearch Dashboards including this plugin. OpenSearch Dashboards will be available on localhost:5601
.
Run docker-compose up -d
after changing the Dockerfile as described in this tutorial
See CONTRIBUTING.
The Github workflow in backport.yml
creates backport PRs automatically when the original PR
with an appropriate label backport <backport-branch-name>
is merged to main with the backport workflow run successfully on the
PR. For example, if a PR on main needs to be backported to 1.x
branch, add a label backport 1.x
to the PR and make sure the
backport workflow runs on the PR along with other checks. Once this PR is merged to main, the workflow will create a backport PR
to the 1.x
branch.