This is an automated email from the ASF dual-hosted git repository. wusheng pushed a commit to branch docs in repository https://gitbox.apache.org/repos/asf/skywalking.git
commit ef23044f30c84a17ce11d4720b2fe21f07c66bcb Author: Wu Sheng <wu.sh...@foxmail.com> AuthorDate: Sun Jul 2 09:32:20 2023 +0200 Separate contribution docs to a new menu structure. --- docs/en/changes/changes.md | 3 + docs/en/guides/How-to-add-menu.md | 46 ------------- docs/en/guides/IT-guide.md | 20 ++++++ docs/en/guides/README.md | 132 ------------------------------------ docs/en/guides/benchmark.md | 13 ++++ docs/en/guides/community.md | 8 +++ docs/en/guides/dependencies.md | 12 ++++ docs/en/guides/e2e.md | 45 ++++++++++++ docs/en/guides/source-extension.md | 2 +- docs/en/guides/storage-extention.md | 46 ------------- docs/menu.yml | 26 +++++-- 11 files changed, 124 insertions(+), 229 deletions(-) diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md index 1abfcd1817..5533001fc4 100644 --- a/docs/en/changes/changes.md +++ b/docs/en/changes/changes.md @@ -45,5 +45,8 @@ * Add Go agent into the server agent documentation. * Add data unit description in the configuration of continuous profiling policy. +* Remove `storage extension` doc, as it is expired. +* Remove `how to add menu` doc, as SkyWalking supports marketplace and new backend-based setup. +* Separate contribution docs to a new menu structure. All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/181?closed=1) diff --git a/docs/en/guides/How-to-add-menu.md b/docs/en/guides/How-to-add-menu.md deleted file mode 100644 index 574cfcee20..0000000000 --- a/docs/en/guides/How-to-add-menu.md +++ /dev/null @@ -1,46 +0,0 @@ -# How to add a new root menu or sub-menu to booster UI - -If you would like to add a new root menu or sub-menu, you should add data to `src/router/data/xx` and add translation contents for the title to `src/locales/lang/xx` in [booster UI](https://github.com/apache/skywalking-booster-ui). - -1. Create a new file called `xxx.ts` in `src/router/data`. -2. Add configurations to the `xxx.ts`, configurations should be like this. -```ts -export default [ - { - // Add `Infrastructure` menu - path: "", - name: "Infrastructure", - meta: { - title: "infrastructure", - icon: "scatter_plot", - hasGroup: true, - }, - redirect: "/linux", - children: [ - // Add a sub menu of the `Infrastructure` - { - path: "/linux", - name: "Linux", - meta: { - title: "linux", - layer: "OS_LINUX", - }, - }, - // If there are Tabs widgets in your dashboards, add following extra configuration to provide static links to the specific tab. - { - path: "/linux/tab/:activeTabIndex", - name: "LinuxActiveTabIndex", - meta: { - title: "linux", - notShow: true, - layer: "OS_LINUX", - }, - }, - ], - }, -]; -``` -3. import configurations in `src/router/data/index.ts`. -```ts -import name from "./xxx"; -``` diff --git a/docs/en/guides/IT-guide.md b/docs/en/guides/IT-guide.md new file mode 100644 index 0000000000..b5317e14b5 --- /dev/null +++ b/docs/en/guides/IT-guide.md @@ -0,0 +1,20 @@ +# Integration Tests +IT(Integration Tests) represents the JUnit driven integration test to verify the features and compatibility between lib +and known server with various versions. + +After setting up the environment and writing your codes, to facilitate integration with the SkyWalking project, you'll +need to run tests locally to verify that your codes would not break any existing features, +as well as write some unit test (UT) codes to verify that the new codes would work well. This will prevent them from being broken by future contributors. +If the new codes involve other components or libraries, you should also write integration tests (IT). + +SkyWalking leverages the plugin `maven-surefire-plugin` to run the UTs and uses `maven-failsafe-plugin` +to run the ITs. `maven-surefire-plugin` excludes ITs (whose class name starts or ends with `*IT`, `IT*`) +and leaves them for `maven-failsafe-plugin` to run, which is bound to the `integration-test` goal. +Therefore, to run the UTs, try `./mvnw clean test`, which only runs the UTs but not the ITs. + +If you would like to run the ITs, please run `./mvnw integration-test` as well as the profiles of the modules whose ITs you want to run. +If you don't want to run UTs, please add `-DskipUTs=true`. +E.g. if you would like to only run the ITs in `oap-server`, try `./mvnw -Pbackend clean verify -DskipUTs=true`, +and if you would like to run all the ITs, simply run `./mvnw clean integration-test -DskipUTs=true`. + +Please be advised that if you're writing integration tests, name it with the pattern `IT*` or `*IT` so they would only run in goal `integration-test`. diff --git a/docs/en/guides/README.md b/docs/en/guides/README.md deleted file mode 100755 index e8c5a1cda9..0000000000 --- a/docs/en/guides/README.md +++ /dev/null @@ -1,132 +0,0 @@ -# Guides -There are many ways you can contribute to the SkyWalking community. - -- Go through our documents, and point out or fix a problem. Translate the documents into other languages. -- Download our [releases](http://skywalking.apache.org/downloads/), try to monitor your applications, and provide feedback to us. -- Read our source codes. For details, reach out to us. -- If you find any bugs, [submit an issue](https://github.com/apache/skywalking/issues). You can also try to fix it. -- Find [`good first issue` issues](https://github.com/apache/skywalking/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22). This is a good place for you to start. -- Submit an issue or start a discussion at [GitHub issue](https://github.com/apache/skywalking/issues/new). -- See all mail list discussions at [website list review](https://lists.apache.org/list.html?d...@skywalking.apache.org). -If you are already a SkyWalking committer, you can log in and use the mail list in the browser mode. Otherwise, subscribe following the step below. -- Issue reports and discussions may also take place via `d...@skywalking.apache.org`. -Mail to `dev-subscr...@skywalking.apache.org`, and follow the instructions in the reply to subscribe to the mail list. - -## Contact Us -All the following channels are open to the community. -* Submit an [issue](https://github.com/apache/skywalking/issues) for an issue or feature proposal. -* Mail list: **d...@skywalking.apache.org**. Mail to `dev-subscr...@skywalking.apache.org`. Follow the instructions in the reply to subscribe to the mail list. -* Submit a [discussion](https://github.com/apache/skywalking/issues) to ask questions. - -## Become an official Apache SkyWalking Committer -The PMC assesses the contributions of every contributor, including their code contributions. It also promotes, votes on, and invites new committers and PMC members according to the Apache guides. -See [Become official Apache SkyWalking Committer](asf/committer.md) for more details. - -## For code developer -For developers, the starting point is the [Compiling Guide](How-to-build.md). It guides developers on how to build the project in local and set up the environment. - -### Integration Tests -After setting up the environment and writing your codes, to facilitate integration with the SkyWalking project, you'll -need to run tests locally to verify that your codes would not break any existing features, -as well as write some unit test (UT) codes to verify that the new codes would work well. This will prevent them from being broken by future contributors. -If the new codes involve other components or libraries, you should also write integration tests (IT). - -SkyWalking leverages the plugin `maven-surefire-plugin` to run the UTs and uses `maven-failsafe-plugin` -to run the ITs. `maven-surefire-plugin` excludes ITs (whose class name starts or ends with `*IT`, `IT*`) -and leaves them for `maven-failsafe-plugin` to run, which is bound to the `integration-test` goal. -Therefore, to run the UTs, try `./mvnw clean test`, which only runs the UTs but not the ITs. - -If you would like to run the ITs, please run `./mvnw integration-test` as well as the profiles of the modules whose ITs you want to run. -If you don't want to run UTs, please add `-DskipUTs=true`. -E.g. if you would like to only run the ITs in `oap-server`, try `./mvnw -Pbackend clean verify -DskipUTs=true`, -and if you would like to run all the ITs, simply run `./mvnw clean integration-test -DskipUTs=true`. - -Please be advised that if you're writing integration tests, name it with the pattern `IT*` or `*IT` so they would only run in goal `integration-test`. - -### Java Microbenchmark Harness (JMH) -JMH is a Java harness for building, running, and analysing nano/micro/milli/macro benchmarks written in Java and other languages targeting the JVM. - -We have a module called `microbench` which performs a series of micro-benchmark tests for JMH testing. -Make new JMH tests extend the `org.apache.skywalking.oap.server.microbench.base.AbstractMicrobenchmark` -to customize runtime conditions (Measurement, Fork, Warmup, etc.). - -JMH tests could run as a normal unit test. And they could run as an independent uber jar via `java -jar benchmark.jar` for all benchmarks, -or via `java -jar /benchmarks.jar exampleClassName` for a specific test. - -Output test results in JSON format, you can add `-rf json` like `java -jar benchmarks.jar -rf json`, if you run through the IDE, you can configure the `-DperfReportDir=savePath` parameter to set the JMH report result save path, a report results in JSON format will be generated when the run ends. - -More information about JMH can be found here: [jmh docs](https://openjdk.java.net/projects/code-tools/jmh/). - -### End to End Tests (E2E) -Since version 6.3.0, we have introduced more automatic tests to perform software quality assurance. E2E is an integral part of it. - -> End-to-end testing is a methodology used to test whether the flow of an application is performing as designed from start to finish. - The purpose of carrying out end-to-end tests is to identify system dependencies and to ensure that the right information is passed between various system components and systems. - -The E2E test involves some/all of the OAP server, storage, coordinator, webapp, and the instrumented services, all of which are orchestrated by `docker-compose` or `KinD`. -Since version 8.9.0, we immigrate to e2e-v2 which leverage [skywalking-infra-e2e](https://github.com/apache/skywalking-infra-e2e) and [skywalking-cli](https://github.com/apache/skywalking-cli) to do the whole e2e process. -`skywalking-infra-e2e` is used to control the e2e process and `skywalking-cli` is used to interact with the OAP such as request and get response metrics from OAP. - -#### Writing E2E Cases - -- Set up the environment -1. Set up `skywalking-infra-e2e` -1. Set up `skywalking-cli`, `yq` (generally these 2 are enough) and others tools if your cases need. Can reference the script under `skywalking/test/e2e-v2/script/prepare/setup-e2e-shell`. - -- Orchestrate the components - -The goal of the E2E tests is to test the SkyWalking project as a whole, including the OAP server, storage, coordinator, webapp, and even the frontend UI (not for now), on the single node mode as well as the cluster mode. Therefore, the first step is to determine what case we are going to verify, and orchestrate the -components. - -To make the orchestration process easier, we're using a [docker-compose](https://docs.docker.com/compose/) that provides a simple file format (`docker-compose.yml`) for orchestrating the required containers, and offers an opportunity to define the dependencies of the components. - -Follow these steps: -1. Decide what (and how many) containers will be needed. For example, for cluster testing, you'll need > 2 OAP nodes, coordinators (e.g. zookeeper), storage (e.g. ElasticSearch), and instrumented services; -1. Define the containers in `docker-compose.yml`, and carefully specify the dependencies, starting orders, and most importantly, link them together, e.g. set the correct OAP address on the agent end, and set the correct coordinator address in OAP, etc. -1. Define the e2e case [config](https://skywalking.apache.org/docs/skywalking-infra-e2e/next/en/setup/configuration-file/) in `e2e.yaml`. -1. Write the expected data(yml) for verify. - -- [Run e2e test](https://skywalking.apache.org/docs/skywalking-infra-e2e/next/en/setup/run-e2e-tests/) - -All e2e cases should under `skywalking/test/e2e-v2/cases`. You could execute e2e run command in `skywalking/` e.g. -``` -e2e run -c test/e2e-v2/cases/alarm/h2/e2e.yaml -``` - -- Troubleshooting - -We expose all logs from all containers to the stdout in the non-CI (local) mode, but save and upload them to the GitHub server. You can download them (only when the tests have failed) at "Artifacts/Download artifacts/logs" (see top right) for debugging. - -**NOTE:** Please verify the newly-added E2E test case locally first. However, if you find that it has passed locally but failed in the PR check status, make sure that all the updated/newly-added files (especially those in the submodules) -are committed and included in the PR, or reset the git HEAD to the remote and verify locally again. - -### Project Extensions -The SkyWalking project supports various extensions of existing features. If you are interesting in writing extensions, -read the following guides. - -This guides you in developing SkyWalking agent plugins to support more frameworks. Developers for both open source and private plugins should read this. -- If you would like to build a new probe or plugin in any language, please read the [Component library definition and extension](Component-library-settings.md) document. -- [Storage extension development guide](storage-extention.md). Potential contributors can learn how to build a new -storage implementor in addition to the official one. -- Customize analysis using OAL scripts. OAL scripts are located in `config/oal/*.oal`. You could modify them and reboot the OAP server. Read -[Observability Analysis Language Introduction](../concepts-and-designs/oal.md) to learn more about OAL scripts. -- [Source and scope extension for new metrics](source-extension.md). For analysis of a new metric which SkyWalking -hasn't yet provided, add a new receiver. -You would most likely have to add a new source and scope. To learn how to do this, read the document. -- If you would like to add a new root menu or sub-menu to booster UI, read the [UI menu control document](How-to-add-menu.md). - -### OAP backend dependency management -> This section is only applicable to dependencies of the backend module. - -As one of the Top Level Projects of The Apache Software Foundation (ASF), SkyWalking must follow the [ASF 3RD PARTY LICENSE POLICY](https://apache.org/legal/resolved.html). So if you're adding new dependencies to the project, you should make sure that the new dependencies would not break the policy, and add their LICENSE and NOTICE to the project. - -We use [license-eye](https://github.com/apache/skywalking-eyes) to help you make sure that you haven't missed out any new dependencies: -- Install `license-eye` according to [the doc](https://github.com/apache/skywalking-eyes#usage). -- Run `license-eye dependency resolve --summary ./dist-material/release-docs/LICENSE.tpl` in the root directory of this project. -- Check the modified lines in `./dist-material/release-docs/LICENSE` (via command `git diff -U0 ./dist-material/release-docs/LICENSE`) and - check whether the new dependencies' licenses are compatible with Apache 2.0. -- Add the new dependencies' notice files (if any) to `./dist-material/release-docs/NOTICE` if they are Apache 2.0 license. Copy their license files to `./dist-material/release-docs/licenses` if they are not standard Apache 2.0 license. -- Copy the new dependencies' license file to `./dist-material/release-docs/licenses` if they are not standard Apache 2.0 license. - -## Release -If you're a committer, read the [Apache Release Guide](How-to-release.md) to learn about how to create an official Apache version release in accordance with avoid Apache's rules. As long as you keep our LICENSE and NOTICE, the Apache license allows everyone to redistribute. diff --git a/docs/en/guides/benchmark.md b/docs/en/guides/benchmark.md new file mode 100644 index 0000000000..b303dfeac7 --- /dev/null +++ b/docs/en/guides/benchmark.md @@ -0,0 +1,13 @@ +# Java Microbenchmark Harness (JMH) +JMH is a Java harness for building, running, and analysing nano/micro/milli/macro benchmarks written in Java and other languages targeting the JVM. + +We have a module called `microbench` which performs a series of micro-benchmark tests for JMH testing. +Make new JMH tests extend the `org.apache.skywalking.oap.server.microbench.base.AbstractMicrobenchmark` +to customize runtime conditions (Measurement, Fork, Warmup, etc.). + +JMH tests could run as a normal unit test. And they could run as an independent uber jar via `java -jar benchmark.jar` for all benchmarks, +or via `java -jar /benchmarks.jar exampleClassName` for a specific test. + +Output test results in JSON format, you can add `-rf json` like `java -jar benchmarks.jar -rf json`, if you run through the IDE, you can configure the `-DperfReportDir=savePath` parameter to set the JMH report result save path, a report results in JSON format will be generated when the run ends. + +More information about JMH can be found here: [jmh docs](https://openjdk.java.net/projects/code-tools/jmh/). diff --git a/docs/en/guides/community.md b/docs/en/guides/community.md new file mode 100644 index 0000000000..45099236e4 --- /dev/null +++ b/docs/en/guides/community.md @@ -0,0 +1,8 @@ +# Guides +There are many ways you can connect and contribute to the SkyWalking community. + +* Submit an [issue](https://github.com/apache/skywalking/issues) for an addressed issue or feature implementation plan. +* Submit a [discussion](https://github.com/apache/skywalking/issues) to ask questions, feature proposal and uncertain bug discussion. +* Mail list: **d...@skywalking.apache.org**. Mail to `dev-subscr...@skywalking.apache.org`. Follow the instructions in the reply to subscribe to the mail list. +* Send `Request to join SkyWalking slack` mail to the mail list(`d...@skywalking.apache.org`), we will invite you in. +* For Chinese speaker, send `[CN] Request to join SkyWalking slack` mail to the mail list(`d...@skywalking.apache.org`), we will invite you in. diff --git a/docs/en/guides/dependencies.md b/docs/en/guides/dependencies.md new file mode 100644 index 0000000000..091004b49c --- /dev/null +++ b/docs/en/guides/dependencies.md @@ -0,0 +1,12 @@ +# OAP backend dependency management +> This section is only applicable to dependencies of the OAP server and UI. + +As one of the Top Level Projects of The Apache Software Foundation (ASF), SkyWalking must follow the [ASF 3RD PARTY LICENSE POLICY](https://apache.org/legal/resolved.html). So if you're adding new dependencies to the project, you should make sure that the new dependencies would not break the policy, and add their LICENSE and NOTICE to the project. + +We use [license-eye](https://github.com/apache/skywalking-eyes) to help you make sure that you haven't missed out any new dependencies: +- Install `license-eye` according to [the doc](https://github.com/apache/skywalking-eyes#usage). +- Run `license-eye dependency resolve --summary ./dist-material/release-docs/LICENSE.tpl` in the root directory of this project. +- Check the modified lines in `./dist-material/release-docs/LICENSE` (via command `git diff -U0 ./dist-material/release-docs/LICENSE`) and + check whether the new dependencies' licenses are compatible with Apache 2.0. +- Add the new dependencies' notice files (if any) to `./dist-material/release-docs/NOTICE` if they are Apache 2.0 license. Copy their license files to `./dist-material/release-docs/licenses` if they are not standard Apache 2.0 license. +- Copy the new dependencies' license file to `./dist-material/release-docs/licenses` if they are not standard Apache 2.0 license. diff --git a/docs/en/guides/e2e.md b/docs/en/guides/e2e.md new file mode 100644 index 0000000000..74fa36903b --- /dev/null +++ b/docs/en/guides/e2e.md @@ -0,0 +1,45 @@ +# End to End Tests (E2E) +SkyWalking heavily rely more automatic tests to perform software quality assurance. E2E is an integral part of it. + +> End-to-end testing is a methodology used to test whether the flow of an application is performing as designed from start to finish. +The purpose of carrying out end-to-end tests is to identify system dependencies and to ensure that the right information is passed between various system components and systems. + +E2E in SkyWalking is always setting the OAP, monitored services and relative remote server dependencies in a real environment, +and verify the dataflow and ultimate query results. + +The E2E test involves some/all of the OAP server, storage, coordinator, webapp, and the instrumented services, all of which are orchestrated by `docker-compose` or `KinD`. +Since version 8.9.0, we immigrate to e2e-v2 which leverage [skywalking-infra-e2e](https://github.com/apache/skywalking-infra-e2e) and [skywalking-cli](https://github.com/apache/skywalking-cli) to do the whole e2e process. +`skywalking-infra-e2e` is used to control the e2e process and `skywalking-cli` is used to interact with the OAP such as request and get response metrics from OAP. + +## Writing E2E Cases + +- Set up the environment +1. Set up `skywalking-infra-e2e` +1. Set up `skywalking-cli`, `yq` (generally these 2 are enough) and others tools if your cases need. Can reference the script under `skywalking/test/e2e-v2/script/prepare/setup-e2e-shell`. + +- Orchestrate the components + +The goal of the E2E tests is to test the SkyWalking project as a whole, including the OAP server, storage, coordinator, webapp, and even the frontend UI (not for now), on the single node mode as well as the cluster mode. Therefore, the first step is to determine what case we are going to verify, and orchestrate the +components. + +To make the orchestration process easier, we're using a [docker-compose](https://docs.docker.com/compose/) that provides a simple file format (`docker-compose.yml`) for orchestrating the required containers, and offers an opportunity to define the dependencies of the components. + +Follow these steps: +1. Decide what (and how many) containers will be needed. For example, for cluster testing, you'll need > 2 OAP nodes, coordinators (e.g. zookeeper), storage (e.g. ElasticSearch), and instrumented services; +1. Define the containers in `docker-compose.yml`, and carefully specify the dependencies, starting orders, and most importantly, link them together, e.g. set the correct OAP address on the agent end, and set the correct coordinator address in OAP, etc. +1. Define the e2e case [config](https://skywalking.apache.org/docs/skywalking-infra-e2e/next/en/setup/configuration-file/) in `e2e.yaml`. +1. Write the expected data(yml) for verify. + +- [Run e2e test](https://skywalking.apache.org/docs/skywalking-infra-e2e/next/en/setup/run-e2e-tests/) + +All e2e cases should under `skywalking/test/e2e-v2/cases`. You could execute e2e run command in `skywalking/` e.g. +``` +e2e run -c test/e2e-v2/cases/alarm/h2/e2e.yaml +``` + +- Troubleshooting + +We expose all logs from all containers to the stdout in the non-CI (local) mode, but save and upload them to the GitHub server. You can download them (only when the tests have failed) at "Artifacts/Download artifacts/logs" (see top right) for debugging. + +**NOTE:** Please verify the newly-added E2E test case locally first. However, if you find that it has passed locally but failed in the PR check status, make sure that all the updated/newly-added files (especially those in the submodules) +are committed and included in the PR, or reset the git HEAD to the remote and verify locally again. diff --git a/docs/en/guides/source-extension.md b/docs/en/guides/source-extension.md index 5516f83fab..9d07c6fba5 100644 --- a/docs/en/guides/source-extension.md +++ b/docs/en/guides/source-extension.md @@ -1,5 +1,5 @@ # Source and scope extension for new metrics -From the [OAL scope introduction](../concepts-and-designs/oal.md#scope), you should already have understood what a scope is. +From the [OAL scope introduction](../concepts-and-designs/oal.md#from), you should already have understood what a scope is. If you would like to create more extensions, you need to have a deeper understanding of what a **source** is. **Source** and **scope** are interrelated concepts. **Scope** declares the ID (int) and name, while **source** declares the attributes. diff --git a/docs/en/guides/storage-extention.md b/docs/en/guides/storage-extention.md deleted file mode 100644 index c57146128b..0000000000 --- a/docs/en/guides/storage-extention.md +++ /dev/null @@ -1,46 +0,0 @@ -# Extend storage -SkyWalking has already provided several storage solutions. In this document, you could -learn how to easily implement a new storage. - -## Define your storage provider -1. Define class extension `org.apache.skywalking.oap.server.library.module.ModuleProvider`. -2. Set this provider targeting to storage module. -```java -@Override -public Class<? extends ModuleDefine> module() { - return StorageModule.class; -} -``` - -## Implement all DAOs -Here's a list of all DAO interfaces in storage: -1. IServiceInventoryCacheDAO -1. IServiceInstanceInventoryCacheDAO -1. IEndpointInventoryCacheDAO -1. INetworkAddressInventoryCacheDAO -1. IBatchDAO -1. StorageDAO -1. IRegisterLockDAO -1. ITopologyQueryDAO -1. IMetricsQueryDAO -1. ITraceQueryDAO -1. IMetadataQueryDAO -1. IAggregationQueryDAO -1. IAlarmQueryDAO -1. IHistoryDeleteDAO -1. IMetricsDAO -1. IRecordDAO -1. IRegisterDAO -1. ILogQueryDAO -1. ITopNRecordsQueryDAO -1. IBrowserLogQueryDAO - -1. IProfileTaskQueryDAO -1. IProfileTaskLogQueryDAO -1. IProfileThreadSnapshotQueryDAO -1. UITemplateManagementDAO -## Register all service implementations -In `public void prepare()`, use `this#registerServiceImplementation` method to register and bind with your implementation of the above interfaces. - -## Example -`org.apache.skywalking.oap.server.storage.plugin.elasticsearch.StorageModuleElasticsearchProvider` and `org.apache.skywalking.oap.server.storage.plugin.jdbc.mysql.MySQLStorageProvider` are good examples. diff --git a/docs/menu.yml b/docs/menu.yml index 00a9c07b0b..43e13561f7 100644 --- a/docs/menu.yml +++ b/docs/menu.yml @@ -313,16 +313,34 @@ catalog: path: "/en/faq/readme" - name: "Contributing Guides" catalog: - - name: "Contribute" - path: "/en/guides/readme" + - name: "Contact the community" + path: "/en/guides/community" - name: "Become A Committer" path: "/en/guides/asf/committer" - name: "Release Guide" path: "/en/guides/how-to-release/" - name: "Compiling Guide" path: "/en/guides/how-to-build" - - name: "How to bump up Zipkin dependency" - path: "/en/guides/how-to-bump-up-zipkin" + - name: "Contribute" + catalog: + - name: "Integration Tests" + path: "/en/guides/it-guide" + - name: "Benchmark Tests" + path: "/en/guides/benchmark" + - name: "End to End Tests" + path: "/en/guides/e2e" + - name: "Project Extensions" + catalog: + - name: "Component Library Settings" + path: "/en/guides/component-library-settings" + - name: "Extend An OAL Source" + path: "/en/guides/source-extension" + - name: "Dependencies" + catalog: + - name: "Project Dependencies Check" + path: "/en/guides/dependencies" + - name: "Zipkin dependency" + path: "/en/guides/how-to-bump-up-zipkin" - name: "Changelog" catalog: - name: "Current Version"