diff --git a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md index dcc598e8845..7c288821375 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -26,7 +26,7 @@ For more information about feature release stages, refer to [Release life cycle | `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 | | +| `correlations` | Correlations page | Yes | | `exploreContentOutline` | Content outline sidebar | Yes | | `returnToPrevious` | Enables the return to previous context functionality | Yes | | `cloudWatchCrossAccountQuerying` | Enables cross-account querying in CloudWatch datasources | Yes | diff --git a/e2e/various-suite/loki-table-explore-to-dash.spec.ts b/e2e/various-suite/loki-table-explore-to-dash.spec.ts index 190a5ea5a14..c56aa16b578 100644 --- a/e2e/various-suite/loki-table-explore-to-dash.spec.ts +++ b/e2e/various-suite/loki-table-explore-to-dash.spec.ts @@ -194,6 +194,10 @@ describe('Loki Query Editor', () => { // And a value of "targetLabelValue" exploreCells.should('contain', 'targetLabelValue'); + const addToButton = cy.get('[aria-label="Add"]'); + addToButton.should('be.visible'); + addToButton.click(); + const addToDashboardButton = cy.get('[aria-label="Add to dashboard"]'); // Now let's add this to a dashboard diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index f4dd16ad9ea..5486ce98491 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -94,6 +94,7 @@ var ( Description: "Correlations page", Stage: FeatureStageGeneralAvailability, Owner: grafanaExploreSquad, + Expression: "true", // enabled by default AllowSelfServe: true, }, {