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 471c03c9ac2..8a290e5b35b 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -110,7 +110,6 @@ Alpha features might be changed or removed without prior notice. | `pyroscopeFlameGraph` | Changes flame graph to pyroscope one | | `authenticationConfigUI` | Enables authentication configuration UI | | `pluginsAPIManifestKey` | Use grafana.com API to retrieve the public manifest key | -| `opensearchDetectVersion` | Enable version detection in OpenSearch | | `extraThemes` | Enables extra themes | ## Development feature toggles diff --git a/packages/grafana-data/src/types/featureToggles.gen.ts b/packages/grafana-data/src/types/featureToggles.gen.ts index 727e6dcdbc2..adab6ecb1eb 100644 --- a/packages/grafana-data/src/types/featureToggles.gen.ts +++ b/packages/grafana-data/src/types/featureToggles.gen.ts @@ -94,7 +94,6 @@ export interface FeatureToggles { authenticationConfigUI?: boolean; pluginsAPIManifestKey?: boolean; advancedDataSourcePicker?: boolean; - opensearchDetectVersion?: boolean; faroDatasourceSelector?: boolean; enableDatagridEditing?: boolean; extraThemes?: boolean; diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index c733163986e..36dab1f1e2d 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -511,13 +511,6 @@ var ( Expression: "true", // enabled by default Owner: grafanaDashboardsSquad, }, - { - Name: "opensearchDetectVersion", - Description: "Enable version detection in OpenSearch", - State: FeatureStateAlpha, - FrontendOnly: true, - Owner: awsPluginsSquad, - }, { Name: "faroDatasourceSelector", Description: "Enable the data source selector within the Frontend Apps section of the Frontend Observability ", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 62398c50c03..b735609fdda 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -75,7 +75,6 @@ enableElasticsearchBackendQuerying,beta,@grafana/observability-logs,false,false, authenticationConfigUI,alpha,@grafana/grafana-authnz-team,false,false,false,false pluginsAPIManifestKey,alpha,@grafana/plugins-platform-backend,false,false,false,false advancedDataSourcePicker,stable,@grafana/dashboards-squad,false,false,false,true -opensearchDetectVersion,alpha,@grafana/aws-plugins,false,false,false,true faroDatasourceSelector,beta,@grafana/app-o11y,false,false,false,true enableDatagridEditing,beta,@grafana/grafana-bi-squad,false,false,false,true extraThemes,alpha,@grafana/user-essentials,false,false,false,true diff --git a/pkg/services/featuremgmt/toggles_gen.go b/pkg/services/featuremgmt/toggles_gen.go index 4240a8a8c7b..3c9ffae7143 100644 --- a/pkg/services/featuremgmt/toggles_gen.go +++ b/pkg/services/featuremgmt/toggles_gen.go @@ -311,10 +311,6 @@ const ( // Enable a new data source picker with contextual information, recently used order and advanced mode FlagAdvancedDataSourcePicker = "advancedDataSourcePicker" - // FlagOpensearchDetectVersion - // Enable version detection in OpenSearch - FlagOpensearchDetectVersion = "opensearchDetectVersion" - // FlagFaroDatasourceSelector // Enable the data source selector within the Frontend Apps section of the Frontend Observability FlagFaroDatasourceSelector = "faroDatasourceSelector"