Grafana uses GitHub to manage contributions. Contributions take the form of pull requests that will be reviewed by the core team.
-
If you are a new contributor, see Steps to contribute.
-
If you have a trivial fix or improvement, go ahead and create a pull request.
-
If you plan to do something more involved, then discuss your idea on the respective issue or create a new issue if one does not exist. This helps avoid unnecessary work and gives you and us a good deal of inspiration.
-
Sign our CLA.
-
Follow the code style guides:
Should you wish to work on a GitHub issue, check first if it is not already assigned to someone. If it is free, you claim it by commenting on the issue that you want to work on it. This is to prevent duplicated efforts from contributors on the same issue.
Please check the beginner friendly
and help wanted
labels to find issues that are good for getting started. If you have questions about one of the issues, with or without the tag, please comment on them and one of the core team or the original poster will clarify it.
To set up a local development environment we recommend reading Building Grafana from source.
Whether you are contributing or doing code review, first read and understand https://google.github.io/eng-practices/review/reviewer/ for general engineering practices around code reviews that we also use.
-
Branch from the master branch and, if needed, rebase to the current master branch before submitting your pull request. If it doesn't merge cleanly with master, then you might be asked to rebase your changes.
-
If your patch is not getting reviewed or you need a specific person to review it, then you can @-reply a reviewer asking for a review in the pull request or a comment.
-
Add tests relevant to the fixed bug or new feature.
- The pull request adds value and the impact of the change is in line with the Backend style guide or Frontend style guide.
- The pull request works the way it says it should do.
- The pull request closes one issue if possible and does not fix unrelated issues within the same pull request.
- The pull request contains necessary tests.
- The pull request contains a title that explains it. It follows PR and commit messages guidelines.
- The pull request contains necessary links to issues.
- The pull request contains commits with messages that are small and understandable. It follows PR and commit messages guidelines.
- The pull request does not contain magic strings or numbers that could be replaced with an
Enum
orconst
instead.
- The pull request contains
Closes: #Issue
orFixes: #Issue
in pull request description. - The Pull Request adds tests that replicate the fixed bug and helps avoid regressions.
- The pull request does not increase the Angular code base.
We are in the process of migrating to React so any increment of Angular code is generally discouraged.
- The pull request does not contain uses of
any
or{}
without comments describing why. - The pull request does not contain large React components that could easily be split into several smaller components.
- The pull request does not contain back end calls directly from components, use actions and Redux instead.
- The pull request does not contain code that mutates state in reducers or thunks.
- The pull request uses helpers
actionCreatorFactory
andreducerFactory
instead of traditionalswitch statement
reducers in Redux. See Redux framework for more details. - The pull request uses
reducerTester
to test reducers. See Redux framework for more details. - The pull request does not contain code that accesses the reducers state slice directly, instead, the code uses state selectors to access state.
Pull request titles should follow this format: Area: Name of the change
. Titles are used to generate the changelog so they should be as descriptive as possible in one line.
Good examples:
Explore: Adds Live option for supported data sources
GraphPanel: Don't sort series when legend table & sort column is not visible
Build: Support publishing MSI to grafana.com
The message in the pull requests should contain a reference so the issue if there is one. For example, Closes #<issue number>
, Fixes #<issue number>
, or Ref #<issue number>
if the change is related to an issue but does not close it. Make sure to explain what problem the pull request is solving and why its implemented this way. As a new contributor its often better to overcommunicate to avoid back-and-forth communication, as it consumes time and energy.
Grafana Squash Pull requests when merging them into master. This means the maintainer will be responsible for the title in the git commit message. The commit message of the commits in the Pull Request can still be part of the git commit body. So it's always encouraged to write informative commit messages.
The Git commit title should be short, descriptive and include the Pull Request ID.
Good examples:
Explore: Live supprt in data sources (#12345)
GraphPanel: Fix legend sorting issues (#12345)
Build: Support publishing MSI to grafana.com (#12345)
Its also good practice to include a reference to the issue in the Git commit body when possible.