diff --git a/docs/sources/explore/_index.md b/docs/sources/explore/_index.md index 5cf8d1ee52a..8eae604c974 100644 --- a/docs/sources/explore/_index.md +++ b/docs/sources/explore/_index.md @@ -75,6 +75,6 @@ The Share shortened link capability allows you to create smaller and simpler URL ### exploreMixedDatasource -Disabled by default, allows users in Explore to have different data sources for different queries. If compatible, results will be combined. +Enabled by default, allows users in Explore to have different data sources for different queries. If compatible, results will be combined. Learn more about how to use [Mixed data source]({{< relref "../datasources/#special-data-sources" >}}). 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 f67af1adc3b..dd91faaf0cf 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -23,6 +23,7 @@ Some stable features are enabled by default. You can disable a stable feature by | ----------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | | `disableEnvelopeEncryption` | Disable envelope encryption (emergency only) | | | `featureHighlights` | Highlight Grafana Enterprise features | | +| `exploreMixedDatasource` | Enable mixed datasource in Explore | 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 | | `internationalization` | Enables internationalization | Yes | | `topnav` | Enables new top navigation and page layouts | Yes | @@ -48,7 +49,6 @@ Some stable features are enabled by default. You can disable a stable feature by | `publicDashboards` | Enables public access to dashboards | | `publicDashboardsEmailSharing` | Enables public dashboard sharing to be restricted to only allowed emails | | `migrationLocking` | Lock database during migrations | -| `exploreMixedDatasource` | Enable mixed datasource in Explore | | `correlations` | Correlations page | | `newDBLibrary` | Use jmoiron/sqlx rather than xorm for a few backend services | | `validateDashboardsOnSave` | Validate dashboard JSON POSTed to api/dashboards/db | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index 20c31205b8a..f4e4ca1f066 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -87,8 +87,9 @@ var ( { Name: "exploreMixedDatasource", Description: "Enable mixed datasource in Explore", - State: FeatureStateBeta, + State: FeatureStateStable, FrontendOnly: true, + Expression: "true", // turned on by default Owner: grafanaExploreSquad, }, { diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 832f8a8309c..e65a685d974 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -11,7 +11,7 @@ lokiLive,alpha,@grafana/observability-logs,false,false,false,false featureHighlights,stable,@grafana/grafana-as-code,false,false,false,false migrationLocking,beta,@grafana/backend-platform,false,false,false,false storage,alpha,@grafana/grafana-app-platform-squad,false,false,false,false -exploreMixedDatasource,beta,@grafana/explore-squad,false,false,false,true +exploreMixedDatasource,stable,@grafana/explore-squad,false,false,false,true newTraceViewHeader,alpha,@grafana/observability-traces-and-profiling,false,false,false,true correlations,beta,@grafana/explore-squad,false,false,false,false datasourceQueryMultiStatus,alpha,@grafana/plugins-platform-backend,false,false,false,false