mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 03:11:01 -06:00
Plugins: Add feature toggles for long running queries (#54349)
* Add feature toggles for long running queries * update feature flag name * make feature toggle frontend only
This commit is contained in:
parent
bfa35ff8d8
commit
34fe7a1119
@ -65,4 +65,6 @@ export interface FeatureToggles {
|
||||
topnav?: boolean;
|
||||
customBranding?: boolean;
|
||||
traceqlEditor?: boolean;
|
||||
redshiftAsyncQueryDataSupport?: boolean;
|
||||
athenaAsyncQueryDataSupport?: boolean;
|
||||
}
|
||||
|
@ -273,5 +273,17 @@ var (
|
||||
Description: "Show the TraceQL editor in the explore page",
|
||||
State: FeatureStateAlpha,
|
||||
},
|
||||
{
|
||||
Name: "redshiftAsyncQueryDataSupport",
|
||||
Description: "Enable async query data support for Redshift",
|
||||
State: FeatureStateAlpha,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
{
|
||||
Name: "athenaAsyncQueryDataSupport",
|
||||
Description: "Enable async query data support for Athena",
|
||||
State: FeatureStateAlpha,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -202,4 +202,12 @@ const (
|
||||
// FlagTraceqlEditor
|
||||
// Show the TraceQL editor in the explore page
|
||||
FlagTraceqlEditor = "traceqlEditor"
|
||||
|
||||
// FlagRedshiftAsyncQueryDataSupport
|
||||
// Enable async query data support for Redshift
|
||||
FlagRedshiftAsyncQueryDataSupport = "redshiftAsyncQueryDataSupport"
|
||||
|
||||
// FlagAthenaAsyncQueryDataSupport
|
||||
// Enable async query data support for Athena
|
||||
FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user