mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
OpenSearch: Add feature toggle for detecting version (#66386)
OpenSearch: Add feature toggle for auto-detecting version
This commit is contained in:
parent
b2e32a70b9
commit
1b0cee491a
@ -109,6 +109,7 @@ Alpha features might be changed or removed without prior notice.
|
||||
| `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different |
|
||||
| `authenticationConfigUI` | Enables authentication configuration UI |
|
||||
| `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order, CSV upload and advanced mode |
|
||||
| `opensearchDetectVersion` | Enable version detection in OpenSearch |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -97,4 +97,5 @@ export interface FeatureToggles {
|
||||
enableElasticsearchBackendQuerying?: boolean;
|
||||
authenticationConfigUI?: boolean;
|
||||
advancedDataSourcePicker?: boolean;
|
||||
opensearchDetectVersion?: boolean;
|
||||
}
|
||||
|
@ -526,5 +526,12 @@ var (
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaDashboardsSquad,
|
||||
},
|
||||
{
|
||||
Name: "opensearchDetectVersion",
|
||||
Description: "Enable version detection in OpenSearch",
|
||||
State: FeatureStateAlpha,
|
||||
FrontendOnly: true,
|
||||
Owner: awsPluginsSquad,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -78,3 +78,4 @@ useCachingService,stable,@grafana/grafana-operator-experience-squad,false,false,
|
||||
enableElasticsearchBackendQuerying,beta,@grafana/observability-logs,false,false,false,false
|
||||
authenticationConfigUI,alpha,@grafana/grafana-authnz-team,false,false,false,false
|
||||
advancedDataSourcePicker,alpha,@grafana/dashboards-squad,false,false,false,true
|
||||
opensearchDetectVersion,alpha,@grafana/aws-plugins,false,false,false,true
|
||||
|
|
@ -322,4 +322,8 @@ const (
|
||||
// FlagAdvancedDataSourcePicker
|
||||
// Enable a new data source picker with contextual information, recently used order, CSV upload and advanced mode
|
||||
FlagAdvancedDataSourcePicker = "advancedDataSourcePicker"
|
||||
|
||||
// FlagOpensearchDetectVersion
|
||||
// Enable version detection in OpenSearch
|
||||
FlagOpensearchDetectVersion = "opensearchDetectVersion"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user