Skip to content

Latest commit

 

History

History
78 lines (65 loc) · 5.16 KB

README.md

File metadata and controls

78 lines (65 loc) · 5.16 KB

Guides

There are many ways that you can help the SkyWalking community.

  • Go through our documents, point out or fixed unclear things. Translate the documents to other languages.
  • Download our releases, try to monitor your applications, and feedback to us about what you think.
  • Read our source codes, Ask questions for details.
  • Find some bugs, submit issue, and try to fix it.
  • Find help wanted issues, which are good for you to start.
  • Submit issue or start discussion through GitHub issue.
  • See all mail list discussion through website list review. If you are a SkyWalking committer, could login and use the mail list in browser mode. Otherwise, follow the next step to subscribe.
  • Issue report and discussion also could take place in [email protected]. Mail to [email protected], follow the reply to subscribe the mail list.

Contact Us

All the following channels are open to the community, you could choose the way you like.

For code developer

For developers, first step, read Compiling Guide. It teaches developer how to build the project in local and set up the environment.

After setting up the environment and writing your codes, in order to make it more easily accepted by SkyWalking project, you'll need to run the tests locally to verify that your codes don't break any existed features, and write some unit test (UT) codes to verify that the new codes work well, preventing them being broke by future contributors. If the new codes involve other components or libraries, you're also supposed to write integration tests (IT).

SkyWalking leverages plugin maven-surefire-plugin to run the UTs while using maven-failsafe-plugin to run the ITs, maven-surefire-plugin will exclude ITs (whose class name starts with IT) and leave them for maven-failsafe-plugin to run, which is bound to the verify goal, CI-with-IT profile. Therefore, to run the UTs, try ./mvnw clean test, this will only run the UTs, not including ITs.

If you want to run the ITs please activate the CI-with-IT profile as well as the the profiles of the modules whose ITs you want to run. e.g. if you want to run the ITs in oap-server, try ./mvnw -Pbackend,CI-with-IT clean verify, and if you'd like to run all the ITs, simple run ./mvnw -Pall,CI-with-IT clean verify.

Please be advised that if you're writing integration tests, name it with the pattern IT* to make them only run in CI-with-IT profile.

Project Extensions

SkyWalking project supports many ways to extend existing features. If you are interesting in these ways, read the following guides.

UI developer

Our UI is constituted by static pages and web container.

  • RocketBot UI is SkyWalking primary UI since 6.1 release. It is built with vue + typescript. You could know more at the rocketbot repository.
  • Web container source codes are in apm-webapp module. This is a just an easy zuul proxy to host static resources and send GraphQL query requests to backend.
  • Legacy UI repository is still there, but not included in SkyWalking release, after 6.0.0-GA.

For release

Apache Release Guide introduces to the committer team about doing official Apache version release, to avoid breaking any Apache rule. Apache license allows everyone to redistribute if you keep our licenses and NOTICE in your redistribution.