Explore: Add explore2Dashboard feature toggle (#47395)

This commit is contained in:
Giordano Ricci
2022-04-07 09:26:01 +01:00
committed by GitHub
parent 25235b3167
commit ca286a238d
4 changed files with 22 additions and 4 deletions

View File

@@ -201,5 +201,11 @@ var (
RequiresDevMode: true,
FrontendOnly: true,
},
{
Name: "explore2Dashboard",
Description: "Experimental Explore to Dashboard workflow",
State: FeatureStateBeta,
FrontendOnly: true,
},
}
)

View File

@@ -150,4 +150,8 @@ const (
// FlagAzureMonitorResourcePickerForMetrics
// New UI for Azure Monitor Metrics Query
FlagAzureMonitorResourcePickerForMetrics = "azureMonitorResourcePickerForMetrics"
// FlagExplore2Dashboard
// Experimental Explore to Dashboard workflow
FlagExplore2Dashboard = "explore2Dashboard"
)