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 382742cbb39..710bb0b2bc3 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -34,6 +34,7 @@ Some stable features are enabled by default. You can disable a stable feature by | `emptyDashboardPage` | Enable the redesigned user interface of a dashboard page that includes no panels | Yes | | `disablePrometheusExemplarSampling` | Disable Prometheus exemplar sampling | | | `logsSampleInExplore` | Enables access to the logs sample feature in Explore | Yes | +| `logsContextDatasourceUi` | Allow datasource to provide custom UI for context view | Yes | | `useCachingService` | When turned on, the new query and resource caching implementation using a wire service inject will be used in place of the previous middleware implementation | | ## Beta feature toggles @@ -88,7 +89,6 @@ Alpha features might be changed or removed without prior notice. | `authnService` | Use new auth service to perform authentication | | `alertingBacktesting` | Rule backtesting API for alerting | | `editPanelCSVDragAndDrop` | Enables drag and drop for CSV and Excel files | -| `logsContextDatasourceUi` | Allow datasource to provide custom UI for context view | | `lokiQuerySplitting` | Split large interval queries into subqueries with smaller time intervals | | `lokiQuerySplittingConfig` | Give users the option to configure split durations for Loki queries | | `individualCookiePreferences` | Support overriding cookie preferences per user | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index f6b2b264bce..b1f2bab21b1 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -354,9 +354,10 @@ var ( { Name: "logsContextDatasourceUi", Description: "Allow datasource to provide custom UI for context view", - State: FeatureStateAlpha, + State: FeatureStateStable, FrontendOnly: true, Owner: grafanaObservabilityLogsSquad, + Expression: "true", // turned on by default }, { Name: "lokiQuerySplitting", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 1a2f988bf46..dea4dac80d6 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -51,7 +51,7 @@ alertingBacktesting,alpha,@grafana/alerting-squad,false,false,false,false editPanelCSVDragAndDrop,alpha,@grafana/grafana-bi-squad,false,false,false,true alertingNoNormalState,beta,@grafana/alerting-squad,false,false,false,false logsSampleInExplore,stable,@grafana/observability-logs,false,false,false,true -logsContextDatasourceUi,alpha,@grafana/observability-logs,false,false,false,true +logsContextDatasourceUi,stable,@grafana/observability-logs,false,false,false,true lokiQuerySplitting,alpha,@grafana/observability-logs,false,false,false,true lokiQuerySplittingConfig,alpha,@grafana/observability-logs,false,false,false,true individualCookiePreferences,alpha,@grafana/backend-platform,false,false,false,false