mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Dashboard: Create 'vizAndWidgetSplit' feature flag (#70677)
This commit is contained in:
parent
b0893c29a7
commit
2785ed80d9
@ -118,6 +118,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `alertingLokiRangeToInstant` | Rewrites eligible loki range queries to instant queries |
|
||||
| `flameGraphV2` | New version of flame graph with new features |
|
||||
| `elasticToggleableFilters` | Enable support to toggle filters off from the query through the Logs Details component |
|
||||
| `vizAndWidgetSplit` | Split panels between vizualizations and widgets |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -105,4 +105,5 @@ export interface FeatureToggles {
|
||||
alertingLokiRangeToInstant?: boolean;
|
||||
flameGraphV2?: boolean;
|
||||
elasticToggleableFilters?: boolean;
|
||||
vizAndWidgetSplit?: boolean;
|
||||
}
|
||||
|
@ -593,5 +593,12 @@ var (
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaObservabilityLogsSquad,
|
||||
},
|
||||
{
|
||||
Name: "vizAndWidgetSplit",
|
||||
Description: "Split panels between vizualizations and widgets",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaDashboardsSquad,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -86,3 +86,4 @@ pluginsDynamicAngularDetectionPatterns,experimental,@grafana/plugins-platform-ba
|
||||
alertingLokiRangeToInstant,experimental,@grafana/alerting-squad,false,false,false,false
|
||||
flameGraphV2,experimental,@grafana/observability-traces-and-profiling,false,false,false,true
|
||||
elasticToggleableFilters,experimental,@grafana/observability-logs,false,false,false,true
|
||||
vizAndWidgetSplit,experimental,@grafana/dashboards-squad,false,false,false,true
|
||||
|
|
@ -354,4 +354,8 @@ const (
|
||||
// FlagElasticToggleableFilters
|
||||
// Enable support to toggle filters off from the query through the Logs Details component
|
||||
FlagElasticToggleableFilters = "elasticToggleableFilters"
|
||||
|
||||
// FlagVizAndWidgetSplit
|
||||
// Split panels between vizualizations and widgets
|
||||
FlagVizAndWidgetSplit = "vizAndWidgetSplit"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user