FeatureFlags: set defaults in the registry rather than the ini file (#58106)

This commit is contained in:
Ryan McKinley
2022-11-03 10:34:01 -07:00
committed by GitHub
parent 9c7b6b1ce8
commit 857e545c5a
4 changed files with 20 additions and 16 deletions

View File

@@ -1253,18 +1253,6 @@ license_path =
# enable = feature1,feature2
enable =
# The new prometheus visual query builder
promQueryBuilder = true
# Experimental Explore to Dashboard workflow
explore2Dashboard = true
# Command Palette
commandPalette = true
# Use dynamic labels in CloudWatch datasource
cloudWatchDynamicLabels = true
# feature1 = true
# feature2 = false

View File

@@ -17,6 +17,7 @@ export interface FeatureToggles {
[name: string]: boolean | undefined; // support any string value
alertingBigTransactions?: boolean;
promQueryBuilder?: boolean;
trimDefaults?: boolean;
disableEnvelopeEncryption?: boolean;
database_metrics?: boolean;

View File

@@ -14,6 +14,13 @@ var (
Description: "Use big transactions for alerting database writes",
State: FeatureStateAlpha,
},
{
Name: "promQueryBuilder",
Description: "Show prometheus query builder",
State: FeatureStateStable,
Expression: "true", // on by default
FrontendOnly: true,
},
{
Name: "trimDefaults",
Description: "Use cue schema to remove values that will be applied automatically",
@@ -162,7 +169,8 @@ var (
{
Name: "explore2Dashboard",
Description: "Experimental Explore to Dashboard workflow",
State: FeatureStateBeta,
State: FeatureStateStable,
Expression: "true", // enabled by default
FrontendOnly: true,
},
{
@@ -178,9 +186,11 @@ var (
FrontendOnly: true,
},
{
Name: "commandPalette",
Description: "Enable command palette",
State: FeatureStateAlpha,
Name: "commandPalette",
Description: "Enable command palette",
State: FeatureStateStable,
Expression: "true", // enabled by default
FrontendOnly: true,
},
{
Name: "correlations",
@@ -191,6 +201,7 @@ var (
Name: "cloudWatchDynamicLabels",
Description: "Use dynamic labels instead of alias patterns in CloudWatch datasource",
State: FeatureStateStable,
Expression: "true", // enabled by default
},
{
Name: "datasourceQueryMultiStatus",

View File

@@ -11,6 +11,10 @@ const (
// Use big transactions for alerting database writes
FlagAlertingBigTransactions = "alertingBigTransactions"
// FlagPromQueryBuilder
// Show prometheus query builder
FlagPromQueryBuilder = "promQueryBuilder"
// FlagTrimDefaults
// Use cue schema to remove values that will be applied automatically
FlagTrimDefaults = "trimDefaults"