Feature Management: add documentation (#78108)
* Feature Management: add documentation * lint docs * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md Co-authored-by: Jack Baldry <jack.baldry@grafana.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> * Update docs/sources/administration/feature-management/index.md Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> * update docs * lint * revise docs --------- Co-authored-by: Jack Baldry <jack.baldry@grafana.com> Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
This commit is contained in:
co-authored by
Jack Baldry
Isabel
Michael Mandrus
parent
82af0d6230
commit
65c3bb78a6
@@ -179,3 +179,31 @@ The following toggles require explicitly setting Grafana's [app mode]({{< relref
|
||||
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
|
||||
| `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 |
|
||||
| `ssoSettingsApi` | Enables the SSO settings API |
|
||||
|
||||
## Configure feature management
|
||||
|
||||
**Feature toggles** is an Administration page that allows authorized users to view and toggle the feature flags available in their Grafana instance. For more information, refer to [Feature toggles](https://grafana.com/docs/grafana/<GRAFANA_VERSION>/administration/feature-toggles/).
|
||||
|
||||
By default, feature toggles are in read-only mode.
|
||||
Granting admin users the ability to alter the states of feature toggles requires configuring Grafana with the optional [`allow_editing`](https://grafana.com/docs/grafana/<GRAFANA_VERSION>/setup-grafana/configure-grafana/#allow_editing), [`update_webhook`](https://grafana.com/docs/grafana/<GRAFANA_VERSION>/setup-grafana/configure-grafana/#update_webhook) and [`update_webhook_token`](https://grafana.com/docs/grafana/<GRAFANA_VERSION>/setup-grafana/configure-grafana/#update_webhook_token) settings.
|
||||
|
||||
Those configurations allow the Grafana operator to set up a webhook that Grafana must call to propagate the configuration change.
|
||||
|
||||
**Example request**:
|
||||
|
||||
```http
|
||||
POST $update_webhook
|
||||
Accept: application/json
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer $update_webhook_token
|
||||
|
||||
{
|
||||
"feature_toggles": [
|
||||
{
|
||||
"featureToggle1": "true",
|
||||
"featureToggle2": "false",
|
||||
}
|
||||
],
|
||||
"user": "admin@example.test",
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user