mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 02:22:26 +08:00
Adhoc Filters: add new feature toggle for 'one of' operator (#91688)
add new feature toggle for 'one of'
This commit is contained in:
@ -192,6 +192,7 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
||||||
| `dashboardRestoreUI` | Enables the frontend to be able to restore a recently deleted dashboard |
|
| `dashboardRestoreUI` | Enables the frontend to be able to restore a recently deleted dashboard |
|
||||||
| `dataplaneAggregator` | Enable grafana dataplane aggregator |
|
| `dataplaneAggregator` | Enable grafana dataplane aggregator |
|
||||||
|
| `adhocFilterOneOf` | Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter. |
|
||||||
|
|
||||||
## Development feature toggles
|
## Development feature toggles
|
||||||
|
|
||||||
|
@ -200,4 +200,5 @@ export interface FeatureToggles {
|
|||||||
cloudwatchMetricInsightsCrossAccount?: boolean;
|
cloudwatchMetricInsightsCrossAccount?: boolean;
|
||||||
prometheusAzureOverrideAudience?: boolean;
|
prometheusAzureOverrideAudience?: boolean;
|
||||||
dataplaneAggregator?: boolean;
|
dataplaneAggregator?: boolean;
|
||||||
|
adhocFilterOneOf?: boolean;
|
||||||
}
|
}
|
||||||
|
@ -1379,6 +1379,12 @@ var (
|
|||||||
Owner: grafanaAppPlatformSquad,
|
Owner: grafanaAppPlatformSquad,
|
||||||
RequiresRestart: true,
|
RequiresRestart: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "adhocFilterOneOf",
|
||||||
|
Description: "Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter.",
|
||||||
|
Stage: FeatureStageExperimental,
|
||||||
|
Owner: grafanaDashboardsSquad,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -181,3 +181,4 @@ bodyScrolling,preview,@grafana/grafana-frontend-platform,false,false,true
|
|||||||
cloudwatchMetricInsightsCrossAccount,preview,@grafana/aws-datasources,false,false,true
|
cloudwatchMetricInsightsCrossAccount,preview,@grafana/aws-datasources,false,false,true
|
||||||
prometheusAzureOverrideAudience,deprecated,@grafana/partner-datasources,false,false,false
|
prometheusAzureOverrideAudience,deprecated,@grafana/partner-datasources,false,false,false
|
||||||
dataplaneAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
dataplaneAggregator,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
||||||
|
adhocFilterOneOf,experimental,@grafana/dashboards-squad,false,false,false
|
||||||
|
|
@ -734,4 +734,8 @@ const (
|
|||||||
// FlagDataplaneAggregator
|
// FlagDataplaneAggregator
|
||||||
// Enable grafana dataplane aggregator
|
// Enable grafana dataplane aggregator
|
||||||
FlagDataplaneAggregator = "dataplaneAggregator"
|
FlagDataplaneAggregator = "dataplaneAggregator"
|
||||||
|
|
||||||
|
// FlagAdhocFilterOneOf
|
||||||
|
// Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter.
|
||||||
|
FlagAdhocFilterOneOf = "adhocFilterOneOf"
|
||||||
)
|
)
|
||||||
|
@ -45,6 +45,18 @@
|
|||||||
"expression": "true"
|
"expression": "true"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"metadata": {
|
||||||
|
"name": "adhocFilterOneOf",
|
||||||
|
"resourceVersion": "1723119716623",
|
||||||
|
"creationTimestamp": "2024-08-08T12:21:56Z"
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"description": "Exposes a new 'one of' operator for ad-hoc filters. This operator allows users to filter by multiple values in a single filter.",
|
||||||
|
"stage": "experimental",
|
||||||
|
"codeowner": "@grafana/dashboards-squad"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "aiGeneratedDashboardChanges",
|
"name": "aiGeneratedDashboardChanges",
|
||||||
|
Reference in New Issue
Block a user