mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Adhoc Filters: add new feature toggle for 'one of' operator (#91688)
add new feature toggle for 'one of'
This commit is contained in:
parent
7f1ae1cd54
commit
ab3e8652aa
@ -192,6 +192,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `alertingApiServer` | Register Alerting APIs with the K8s API server |
|
||||
| `dashboardRestoreUI` | Enables the frontend to be able to restore a recently deleted dashboard |
|
||||
| `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
|
||||
|
||||
|
@ -200,4 +200,5 @@ export interface FeatureToggles {
|
||||
cloudwatchMetricInsightsCrossAccount?: boolean;
|
||||
prometheusAzureOverrideAudience?: boolean;
|
||||
dataplaneAggregator?: boolean;
|
||||
adhocFilterOneOf?: boolean;
|
||||
}
|
||||
|
@ -1379,6 +1379,12 @@ var (
|
||||
Owner: grafanaAppPlatformSquad,
|
||||
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
|
||||
prometheusAzureOverrideAudience,deprecated,@grafana/partner-datasources,false,false,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
|
||||
// Enable grafana dataplane aggregator
|
||||
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"
|
||||
}
|
||||
},
|
||||
{
|
||||
"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": {
|
||||
"name": "aiGeneratedDashboardChanges",
|
||||
|
Loading…
Reference in New Issue
Block a user