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 5b05dd7d308..947f574760b 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -44,6 +44,7 @@ Some stable features are enabled by default. You can disable a stable feature by | `panelTitleSearch` | Search for dashboards using panel title | | `prometheusAzureOverrideAudience` | Experimental. Allow override default AAD audience for Azure Prometheus endpoint | | `migrationLocking` | Lock database during migrations | +| `correlations` | Correlations page | | `newDBLibrary` | Use jmoiron/sqlx rather than xorm for a few backend services | | `validateDashboardsOnSave` | Validate dashboard JSON POSTed to api/dashboards/db | | `autoMigrateOldPanels` | Migrate old angular panels to supported versions (graph, table-old, worldmap, etc) | @@ -52,7 +53,6 @@ Some stable features are enabled by default. You can disable a stable feature by | `accessControlOnCall` | Access control primitives for OnCall | | `alertingNoNormalState` | Stop maintaining state of alerts that are not firing | | `renderAuthJWT` | Uses JWT-based auth for rendering instead of relying on remote cache | -| `correlations` | Correlations page | ## Alpha feature toggles diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index 80c1b20e915..2152ac303ed 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -126,7 +126,7 @@ var ( { Name: "correlations", Description: "Correlations page", - State: FeatureStateAlpha, + State: FeatureStateBeta, Owner: grafanaExploreSquad, }, { diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 39e4fdd58b4..3784d49fb5d 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -17,7 +17,7 @@ storage,alpha,@grafana/grafana-app-platform-squad,false,false,false,false k8s,alpha,@grafana/grafana-app-platform-squad,true,false,false,false exploreMixedDatasource,alpha,@grafana/explore-squad,false,false,false,true newTraceView,alpha,@grafana/observability-traces-and-profiling,false,false,false,true -correlations,alpha,@grafana/explore-squad,false,false,false,false +correlations,beta,@grafana/explore-squad,false,false,false,false cloudWatchDynamicLabels,stable,@grafana/aws-plugins,false,false,false,false datasourceQueryMultiStatus,alpha,@grafana/plugins-platform-backend,false,false,false,false traceToMetrics,alpha,@grafana/observability-traces-and-profiling,false,false,false,true