mirror of
https://github.com/grafana/grafana.git
synced 2024-12-22 15:13:38 -06:00
FeatureToggles: Make newFiltersUI feature toggle generally available (#97460)
make newFiltersUIfeature toggle generally available
This commit is contained in:
parent
dd969f8a54
commit
663167a16c
@ -77,6 +77,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
|||||||
| `openSearchBackendFlowEnabled` | Enables the backend query flow for Open Search datasource plugin | Yes |
|
| `openSearchBackendFlowEnabled` | Enables the backend query flow for Open Search datasource plugin | Yes |
|
||||||
| `cloudWatchRoundUpEndTime` | Round up end time for metric queries to the next minute to avoid missing data | Yes |
|
| `cloudWatchRoundUpEndTime` | Round up end time for metric queries to the next minute to avoid missing data | Yes |
|
||||||
| `cloudwatchMetricInsightsCrossAccount` | Enables cross account observability for Cloudwatch Metric Insights query builder | Yes |
|
| `cloudwatchMetricInsightsCrossAccount` | Enables cross account observability for Cloudwatch Metric Insights query builder | Yes |
|
||||||
|
| `newFiltersUI` | Enables new combobox style UI for the Ad hoc filters variable in scenes architecture | Yes |
|
||||||
| `singleTopNav` | Unifies the top search bar and breadcrumb bar into one | Yes |
|
| `singleTopNav` | Unifies the top search bar and breadcrumb bar into one | Yes |
|
||||||
| `azureMonitorDisableLogLimit` | Disables the log limit restriction for Azure Monitor when true. The limit is enabled by default. | |
|
| `azureMonitorDisableLogLimit` | Disables the log limit restriction for Azure Monitor when true. The limit is enabled by default. | |
|
||||||
| `preinstallAutoUpdate` | Enables automatic updates for pre-installed plugins | Yes |
|
| `preinstallAutoUpdate` | Enables automatic updates for pre-installed plugins | Yes |
|
||||||
@ -205,7 +206,6 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `failWrongDSUID` | Throws an error if a datasource has an invalid UIDs |
|
| `failWrongDSUID` | Throws an error if a datasource has an invalid UIDs |
|
||||||
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
||||||
| `dataplaneAggregator` | Enable grafana dataplane aggregator |
|
| `dataplaneAggregator` | Enable grafana dataplane aggregator |
|
||||||
| `newFiltersUI` | Enables new combobox style UI for the Ad hoc filters variable in scenes architecture |
|
|
||||||
| `lokiSendDashboardPanelNames` | Send dashboard and panel names to Loki when querying |
|
| `lokiSendDashboardPanelNames` | Send dashboard and panel names to Loki when querying |
|
||||||
| `alertingPrometheusRulesPrimary` | Uses Prometheus rules as the primary source of truth for ruler-enabled data sources |
|
| `alertingPrometheusRulesPrimary` | Uses Prometheus rules as the primary source of truth for ruler-enabled data sources |
|
||||||
| `exploreLogsShardSplitting` | Used in Explore Logs to split queries into multiple queries based on the number of shards |
|
| `exploreLogsShardSplitting` | Used in Explore Logs to split queries into multiple queries based on the number of shards |
|
||||||
|
@ -1436,8 +1436,9 @@ var (
|
|||||||
{
|
{
|
||||||
Name: "newFiltersUI",
|
Name: "newFiltersUI",
|
||||||
Description: "Enables new combobox style UI for the Ad hoc filters variable in scenes architecture",
|
Description: "Enables new combobox style UI for the Ad hoc filters variable in scenes architecture",
|
||||||
Stage: FeatureStageExperimental,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
Owner: grafanaDashboardsSquad,
|
Owner: grafanaDashboardsSquad,
|
||||||
|
Expression: "true", // enabled by default
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "lokiSendDashboardPanelNames",
|
Name: "lokiSendDashboardPanelNames",
|
||||||
|
@ -188,7 +188,7 @@ cloudwatchMetricInsightsCrossAccount,GA,@grafana/aws-datasources,false,false,tru
|
|||||||
prometheusAzureOverrideAudience,deprecated,@grafana/partner-datasources,false,false,false
|
prometheusAzureOverrideAudience,deprecated,@grafana/partner-datasources,false,false,false
|
||||||
alertingFilterV2,experimental,@grafana/alerting-squad,false,false,false
|
alertingFilterV2,experimental,@grafana/alerting-squad,false,false,false
|
||||||
dataplaneAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
dataplaneAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
||||||
newFiltersUI,experimental,@grafana/dashboards-squad,false,false,false
|
newFiltersUI,GA,@grafana/dashboards-squad,false,false,false
|
||||||
lokiSendDashboardPanelNames,experimental,@grafana/observability-logs,false,false,false
|
lokiSendDashboardPanelNames,experimental,@grafana/observability-logs,false,false,false
|
||||||
alertingPrometheusRulesPrimary,experimental,@grafana/alerting-squad,false,false,true
|
alertingPrometheusRulesPrimary,experimental,@grafana/alerting-squad,false,false,true
|
||||||
singleTopNav,GA,@grafana/grafana-frontend-platform,false,false,true
|
singleTopNav,GA,@grafana/grafana-frontend-platform,false,false,true
|
||||||
|
|
@ -2358,13 +2358,17 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "newFiltersUI",
|
"name": "newFiltersUI",
|
||||||
"resourceVersion": "1724228641625",
|
"resourceVersion": "1733391902652",
|
||||||
"creationTimestamp": "2024-08-30T12:48:13Z"
|
"creationTimestamp": "2024-08-30T12:48:13Z",
|
||||||
|
"annotations": {
|
||||||
|
"grafana.app/updatedTimestamp": "2024-12-05 09:45:02.652078 +0000 UTC"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enables new combobox style UI for the Ad hoc filters variable in scenes architecture",
|
"description": "Enables new combobox style UI for the Ad hoc filters variable in scenes architecture",
|
||||||
"stage": "experimental",
|
"stage": "GA",
|
||||||
"codeowner": "@grafana/dashboards-squad"
|
"codeowner": "@grafana/dashboards-squad",
|
||||||
|
"expression": "true"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user