mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
Docs: update headings and add release info (#87058)
* Updated headings and to align with release life cycle stages and adding release info * Update generated files Signed-off-by: Jack Baldry <jack.baldry@grafana.com> --------- Signed-off-by: Jack Baldry <jack.baldry@grafana.com> Co-authored-by: Jack Baldry <jack.baldry@grafana.com>
This commit is contained in:
parent
351d36caea
commit
b7d024c426
@ -7,7 +7,7 @@ weight: 150
|
||||
---
|
||||
|
||||
<!-- DO NOT EDIT THIS PAGE, it is machine generated by running the test in -->
|
||||
<!-- https://github.com/grafana/grafana/blob/main/pkg/services/featuremgmt/toggles_gen_test.go#L19 -->
|
||||
<!-- https://github.com/grafana/grafana/blob/main/pkg/services/featuremgmt/toggles_gen_test.go#L27 -->
|
||||
|
||||
# Configure feature toggles
|
||||
|
||||
@ -15,9 +15,11 @@ You use feature toggles, also known as feature flags, to enable or disable featu
|
||||
|
||||
This page contains a list of available feature toggles. To learn how to turn on feature toggles, refer to our [Configure Grafana documentation]({{< relref "../_index.md#feature_toggles" >}}). Feature toggles are also available to Grafana Cloud Advanced customers. If you use Grafana Cloud Advanced, you can open a support ticket and specify the feature toggles and stack for which you want them enabled.
|
||||
|
||||
## Feature toggles
|
||||
For more information about feature release stages, refer to [Release life cycle for Grafana Labs](https://grafana.com/docs/release-life-cycle/) and [Manage feature toggles](https://grafana.com/docs/grafana/<GRAFANA_VERSION>/administration/feature-toggles/#manage-feature-toggles).
|
||||
|
||||
Some features are enabled by default. You can disable these feature by setting the feature flag to "false" in the configuration.
|
||||
## General availability feature toggles
|
||||
|
||||
[Generally available](https://grafana.com/docs/release-life-cycle/#general-availability) features are enabled by default. You can disable these feature by setting the feature flag to "false" in the configuration.
|
||||
|
||||
| Feature toggle name | Description | Enabled by default |
|
||||
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ |
|
||||
@ -63,7 +65,9 @@ Some features are enabled by default. You can disable these feature by setting t
|
||||
| `betterPageScrolling` | Removes CustomScrollbar from the UI, relying on native browser scrollbars | Yes |
|
||||
| `cloudWatchNewLabelParsing` | Updates CloudWatch label parsing to be more accurate | Yes |
|
||||
|
||||
## Preview feature toggles
|
||||
## Public preview feature toggles
|
||||
|
||||
[Public preview](https://grafana.com/docs/release-life-cycle/#public-preview) features are supported by our Support teams, but might be limited to enablement, configuration, and some troubleshooting.
|
||||
|
||||
| Feature toggle name | Description |
|
||||
| -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
@ -100,7 +104,7 @@ Some features are enabled by default. You can disable these feature by setting t
|
||||
|
||||
## Experimental feature toggles
|
||||
|
||||
These features are early in their development lifecycle and so are not yet supported in Grafana Cloud.
|
||||
[Experimental](https://grafana.com/docs/release-life-cycle/#experimental) features are early in their development lifecycle and so are not yet supported in Grafana Cloud.
|
||||
Experimental features might be changed or removed without prior notice.
|
||||
|
||||
| Feature toggle name | Description |
|
||||
|
@ -329,7 +329,7 @@ weight: 150
|
||||
---
|
||||
|
||||
<!-- DO NOT EDIT THIS PAGE, it is machine generated by running the test in -->
|
||||
<!-- https://github.com/grafana/grafana/blob/main/pkg/services/featuremgmt/toggles_gen_test.go#L19 -->
|
||||
<!-- https://github.com/grafana/grafana/blob/main/pkg/services/featuremgmt/toggles_gen_test.go#L27 -->
|
||||
|
||||
# Configure feature toggles
|
||||
|
||||
@ -337,16 +337,20 @@ You use feature toggles, also known as feature flags, to enable or disable featu
|
||||
|
||||
This page contains a list of available feature toggles. To learn how to turn on feature toggles, refer to our [Configure Grafana documentation]({{< relref "../_index.md#feature_toggles" >}}). Feature toggles are also available to Grafana Cloud Advanced customers. If you use Grafana Cloud Advanced, you can open a support ticket and specify the feature toggles and stack for which you want them enabled.
|
||||
|
||||
## Feature toggles
|
||||
For more information about feature release stages, refer to [Release life cycle for Grafana Labs](https://grafana.com/docs/release-life-cycle/) and [Manage feature toggles](https://grafana.com/docs/grafana/<GRAFANA_VERSION>/administration/feature-toggles/#manage-feature-toggles).
|
||||
|
||||
Some features are enabled by default. You can disable these feature by setting the feature flag to "false" in the configuration.
|
||||
## General availability feature toggles
|
||||
|
||||
[Generally available](https://grafana.com/docs/release-life-cycle/#general-availability) features are enabled by default. You can disable these feature by setting the feature flag to "false" in the configuration.
|
||||
|
||||
` + writeToggleDocsTable(func(flag FeatureFlag) bool {
|
||||
return flag.Stage == FeatureStageGeneralAvailability
|
||||
}, true)
|
||||
|
||||
buf += `
|
||||
## Preview feature toggles
|
||||
## Public preview feature toggles
|
||||
|
||||
[Public preview](https://grafana.com/docs/release-life-cycle/#public-preview) features are supported by our Support teams, but might be limited to enablement, configuration, and some troubleshooting.
|
||||
|
||||
` + writeToggleDocsTable(func(flag FeatureFlag) bool {
|
||||
return flag.Stage == FeatureStagePublicPreview
|
||||
@ -366,7 +370,7 @@ When features are slated for removal, they will be marked as Deprecated first.
|
||||
buf += `
|
||||
## Experimental feature toggles
|
||||
|
||||
These features are early in their development lifecycle and so are not yet supported in Grafana Cloud.
|
||||
[Experimental](https://grafana.com/docs/release-life-cycle/#experimental) features are early in their development lifecycle and so are not yet supported in Grafana Cloud.
|
||||
Experimental features might be changed or removed without prior notice.
|
||||
|
||||
` + writeToggleDocsTable(func(flag FeatureFlag) bool {
|
||||
|
Loading…
Reference in New Issue
Block a user