mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
7794697660
* add: direct mapping of None role for SAML * Fix docs formatting * fix spelling --------- Co-authored-by: Vardan Torosyan <vardants@gmail.com>
1.5 KiB
1.5 KiB
Feature toggle guide
This guide helps you get started adding your feature behind a feature flag in Grafana.
Steps to adding a feature toggle
- Define the feature toggle in registry.go. To see what each feature stage means, look at the comments here. If you are a community member, use the CODEOWNERS file to determine which team owns the package you are updating.
- Run the go tests mentioned at the top of this file. This will generate all the additional files needed:
toggles_gen
for the backend,grafana-data
for the frontend, and docs. You can run the test by runninggo test ./pkg/services/featuremgmt/...
. This will say the tests failed the first time, but it will have generated the right code. If you re-run the tests, it will pass.
How to use it in the code
Once your feature toggle is defined, you can then wrap your feature around a check if the feature flag is enabled on that Grafana instance. Here are examples of how to do that: