OpenSearch: remove unused version detection toggle (#68496)

This commit is contained in:
Isabella Siu 2023-05-16 10:22:23 -04:00 committed by GitHub
parent b8a9f5cfb4
commit 800f733024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 14 deletions

View File

@ -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

View File

@ -94,7 +94,6 @@ export interface FeatureToggles {
authenticationConfigUI?: boolean;
pluginsAPIManifestKey?: boolean;
advancedDataSourcePicker?: boolean;
opensearchDetectVersion?: boolean;
faroDatasourceSelector?: boolean;
enableDatagridEditing?: boolean;
extraThemes?: boolean;

View File

@ -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 ",

View File

@ -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

1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
75 authenticationConfigUI alpha @grafana/grafana-authnz-team false false false false
76 pluginsAPIManifestKey alpha @grafana/plugins-platform-backend false false false false
77 advancedDataSourcePicker stable @grafana/dashboards-squad false false false true
opensearchDetectVersion alpha @grafana/aws-plugins false false false true
78 faroDatasourceSelector beta @grafana/app-o11y false false false true
79 enableDatagridEditing beta @grafana/grafana-bi-squad false false false true
80 extraThemes alpha @grafana/user-essentials false false false true

View File

@ -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"