mirror of
https://github.com/grafana/grafana.git
synced 2025-01-15 19:22:34 -06:00
Chore: Create newVizTooltips
feature flag (#77643)
This commit is contained in:
parent
1959f3434b
commit
6b4b712754
@ -25,6 +25,7 @@ Some features are enabled by default. You can disable these feature by setting t
|
||||
| `publicDashboards` | Enables public access to dashboards | Yes |
|
||||
| `featureHighlights` | Highlight Grafana Enterprise features | |
|
||||
| `exploreContentOutline` | Content outline sidebar | Yes |
|
||||
| `newVizTooltips` | New visualizations tooltips UX | |
|
||||
| `dataConnectionsConsole` | Enables a new top-level page called Connections. This page is an experiment that provides a better experience when you install and configure data sources and other plugins. | Yes |
|
||||
| `cloudWatchCrossAccountQuerying` | Enables cross-account querying in CloudWatch datasources | Yes |
|
||||
| `redshiftAsyncQueryDataSupport` | Enable async query data support for Redshift | Yes |
|
||||
|
@ -36,6 +36,7 @@ export interface FeatureToggles {
|
||||
autoMigrateOldPanels?: boolean;
|
||||
disableAngular?: boolean;
|
||||
canvasPanelNesting?: boolean;
|
||||
newVizTooltips?: boolean;
|
||||
scenes?: boolean;
|
||||
disableSecretsCompatibility?: boolean;
|
||||
logRequestsInstrumentedAsUnknown?: boolean;
|
||||
|
@ -134,6 +134,14 @@ var (
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaDatavizSquad,
|
||||
},
|
||||
{
|
||||
Name: "newVizTooltips",
|
||||
Description: "New visualizations tooltips UX",
|
||||
Stage: FeatureStageGeneralAvailability,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaDatavizSquad,
|
||||
AllowSelfServe: falsePtr,
|
||||
},
|
||||
{
|
||||
Name: "scenes",
|
||||
Description: "Experimental framework to build interactive dashboards",
|
||||
|
@ -17,6 +17,7 @@ newDBLibrary,preview,@grafana/backend-platform,false,false,false,false
|
||||
autoMigrateOldPanels,preview,@grafana/dataviz-squad,false,false,false,true
|
||||
disableAngular,preview,@grafana/dataviz-squad,false,false,false,true
|
||||
canvasPanelNesting,experimental,@grafana/dataviz-squad,false,false,false,true
|
||||
newVizTooltips,GA,@grafana/dataviz-squad,false,false,false,true
|
||||
scenes,experimental,@grafana/dashboards-squad,false,false,false,true
|
||||
disableSecretsCompatibility,experimental,@grafana/hosted-grafana-team,false,false,true,false
|
||||
logRequestsInstrumentedAsUnknown,experimental,@grafana/hosted-grafana-team,false,false,false,false
|
||||
|
|
@ -79,6 +79,10 @@ const (
|
||||
// Allow elements nesting
|
||||
FlagCanvasPanelNesting = "canvasPanelNesting"
|
||||
|
||||
// FlagNewVizTooltips
|
||||
// New visualizations tooltips UX
|
||||
FlagNewVizTooltips = "newVizTooltips"
|
||||
|
||||
// FlagScenes
|
||||
// Experimental framework to build interactive dashboards
|
||||
FlagScenes = "scenes"
|
||||
|
Loading…
Reference in New Issue
Block a user