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:
Isabel Matwawana
2024-05-13 12:44:14 -04:00
committed by GitHub
co-authored by Jack Baldry
parent 351d36caea
commit b7d024c426
2 changed files with 18 additions and 10 deletions
+9 -5
View File
@@ -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 {