Correlations: Enable correlations feature toggle by default (#80881)

* Enable correlations by default

* Update docs
pull/80601/head^2
Piotr Jamróz 1 year ago committed by GitHub
parent 1f840600b6
commit 98e3a01aff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      docs/sources/administration/correlations/_index.md
  2. 2
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  3. 11
      pkg/services/featuremgmt/registry.go
  4. 2
      pkg/services/featuremgmt/toggles_gen.csv

@ -30,11 +30,6 @@ Explore visualizations that currently support showing links based on correlation
You can configure correlations using [provisioning]({{< relref "../provisioning" >}}), the **Administration > Plugins and data > Correlations** page in Grafana or directly in [Explore]({{< relref "../../explore/correlations-editor-in-explore" >}}).
{{% admonition type="note" %}}
Correlations are available in Grafana 10.0+ as an opt-in beta feature.
Modify the Grafana [configuration file]({{< relref "../../setup-grafana/configure-grafana#configuration-file-location" >}}) to enable the `correlations` [feature toggle]({{< relref "../../setup-grafana/configure-grafana#feature_toggles" >}}) to use it.
{{% /admonition %}}
## Example of how links work in Explore once set up
{{< figure src="/static/img/docs/correlations/correlations-in-explore-10-0.gif" alt="Demonstration of following a correlation link in Grafana Explore" caption="Correlations links in Explore" >}}

@ -24,6 +24,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `disableEnvelopeEncryption` | Disable envelope encryption (emergency only) | |
| `publicDashboards` | [Deprecated] Public dashboards are now enabled by default; to disable them, use the configuration setting. This feature toggle will be removed in the next major version. | Yes |
| `featureHighlights` | Highlight Grafana Enterprise features | |
| `correlations` | Correlations page | |
| `exploreContentOutline` | Content outline sidebar | Yes |
| `dataConnectionsConsole` | Enables a new top-level page called Connections. This page is an experiment that provides a better experience when you install and configure data sources and other plugins. | Yes |
| `cloudWatchCrossAccountQuerying` | Enables cross-account querying in CloudWatch datasources | Yes |
@ -66,7 +67,6 @@ Some features are enabled by default. You can disable these feature by setting t
| -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `panelTitleSearch` | Search for dashboards using panel title |
| `migrationLocking` | Lock database during migrations |
| `correlations` | Correlations page |
| `autoMigrateOldPanels` | Migrate old angular panels to supported versions (graph, table-old, worldmap, etc) |
| `disableAngular` | Dynamic flag to disable angular at runtime. The preferred method is to set `angular_support_enabled` to `false` in the [security] settings, which allows you to change the state at runtime. |
| `newVizTooltips` | New visualizations tooltips UX |

@ -95,11 +95,12 @@ var (
Created: time.Date(2022, time.March, 17, 12, 0, 0, 0, time.UTC),
},
{
Name: "correlations",
Description: "Correlations page",
Stage: FeatureStagePublicPreview,
Owner: grafanaExploreSquad,
Created: time.Date(2022, time.September, 16, 12, 0, 0, 0, time.UTC),
Name: "correlations",
Description: "Correlations page",
Stage: FeatureStageGeneralAvailability,
Owner: grafanaExploreSquad,
AllowSelfServe: true,
Created: time.Date(2022, time.September, 16, 12, 0, 0, 0, time.UTC),
},
{
Name: "exploreContentOutline",

@ -9,7 +9,7 @@ lokiExperimentalStreaming,experimental,@grafana/observability-logs,2023-06-19,fa
featureHighlights,GA,@grafana/grafana-as-code,2022-02-03,false,false,false,false
migrationLocking,preview,@grafana/backend-platform,2022-02-15,false,false,false,false
storage,experimental,@grafana/grafana-app-platform-squad,2022-03-17,false,false,false,false
correlations,preview,@grafana/explore-squad,2022-09-16,false,false,false,false
correlations,GA,@grafana/explore-squad,2022-09-16,false,false,false,false
exploreContentOutline,GA,@grafana/explore-squad,2023-11-03,false,false,false,true
datasourceQueryMultiStatus,experimental,@grafana/plugins-platform-backend,2022-05-03,false,false,false,false
traceToMetrics,experimental,@grafana/observability-traces-and-profiling,2022-03-07,false,false,false,true

1 Name Stage Owner Created requiresDevMode RequiresLicense RequiresRestart FrontendOnly
9 featureHighlights GA @grafana/grafana-as-code 2022-02-03 false false false false
10 migrationLocking preview @grafana/backend-platform 2022-02-15 false false false false
11 storage experimental @grafana/grafana-app-platform-squad 2022-03-17 false false false false
12 correlations preview GA @grafana/explore-squad 2022-09-16 false false false false
13 exploreContentOutline GA @grafana/explore-squad 2023-11-03 false false false true
14 datasourceQueryMultiStatus experimental @grafana/plugins-platform-backend 2022-05-03 false false false false
15 traceToMetrics experimental @grafana/observability-traces-and-profiling 2022-03-07 false false false true
Loading…
Cancel
Save