mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
Combobox: Add prometheusUsesCombobox feature toggle (#95238)
Add prometheusUsesCombobox feature toggle
This commit is contained in:
parent
813632dff1
commit
2cf6a6388b
@ -212,6 +212,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `pluginsSriChecks` | Enables SRI checks for plugin assets |
|
||||
| `unifiedStorageBigObjectsSupport` | Enables to save big objects in blob storage |
|
||||
| `timeRangeProvider` | Enables time pickers sync |
|
||||
| `prometheusUsesCombobox` | Use new combobox component for Prometheus query editor |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -223,4 +223,5 @@ export interface FeatureToggles {
|
||||
pluginsSriChecks?: boolean;
|
||||
unifiedStorageBigObjectsSupport?: boolean;
|
||||
timeRangeProvider?: boolean;
|
||||
prometheusUsesCombobox?: boolean;
|
||||
}
|
||||
|
@ -1535,6 +1535,12 @@ var (
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaFrontendPlatformSquad,
|
||||
},
|
||||
{
|
||||
Name: "prometheusUsesCombobox",
|
||||
Description: "Use new combobox component for Prometheus query editor",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaObservabilityMetricsSquad,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -204,3 +204,4 @@ unifiedStorageSearch,experimental,@grafana/search-and-storage,false,false,false
|
||||
pluginsSriChecks,experimental,@grafana/plugins-platform-backend,false,false,false
|
||||
unifiedStorageBigObjectsSupport,experimental,@grafana/search-and-storage,false,false,false
|
||||
timeRangeProvider,experimental,@grafana/grafana-frontend-platform,false,false,false
|
||||
prometheusUsesCombobox,experimental,@grafana/observability-metrics,false,false,false
|
||||
|
|
@ -826,4 +826,8 @@ const (
|
||||
// FlagTimeRangeProvider
|
||||
// Enables time pickers sync
|
||||
FlagTimeRangeProvider = "timeRangeProvider"
|
||||
|
||||
// FlagPrometheusUsesCombobox
|
||||
// Use new combobox component for Prometheus query editor
|
||||
FlagPrometheusUsesCombobox = "prometheusUsesCombobox"
|
||||
)
|
||||
|
@ -2587,6 +2587,21 @@
|
||||
"codeowner": "@grafana/observability-metrics"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "prometheusUsesCombobox",
|
||||
"resourceVersion": "1726140033271",
|
||||
"creationTimestamp": "2024-09-12T11:19:18Z",
|
||||
"annotations": {
|
||||
"grafana.app/updatedTimestamp": "2024-09-12 11:20:33.271822988 +0000 UTC"
|
||||
}
|
||||
},
|
||||
"spec": {
|
||||
"description": "Use new combobox component for Prometheus query editor",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/observability-metrics"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "publicDashboards",
|
||||
|
Loading…
Reference in New Issue
Block a user