mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
FeatureToggle: (Chore) Add recordedQueriesMulti toggle (#70063)
Currently does not do anything as it is for use with a future enterprise PR Eventually: "Enables writing multiple items from a single query within Recorded Queries"
This commit is contained in:
@@ -114,6 +114,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `lokiPredefinedOperations` | Adds predefined query operations to Loki query editor |
|
||||
| `pluginsFrontendSandbox` | Enables the plugins frontend sandbox |
|
||||
| `cloudWatchLogsMonacoEditor` | Enables the Monaco editor for CloudWatch Logs queries |
|
||||
| `recordedQueriesMulti` | Enables writing multiple items from a single query within Recorded Queries |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
||||
@@ -101,4 +101,5 @@ export interface FeatureToggles {
|
||||
pluginsFrontendSandbox?: boolean;
|
||||
sqlDatasourceDatabaseSelection?: boolean;
|
||||
cloudWatchLogsMonacoEditor?: boolean;
|
||||
recordedQueriesMulti?: boolean;
|
||||
}
|
||||
|
||||
@@ -564,5 +564,11 @@ var (
|
||||
FrontendOnly: true,
|
||||
Owner: awsPluginsSquad,
|
||||
},
|
||||
{
|
||||
Name: "recordedQueriesMulti",
|
||||
Description: "Enables writing multiple items from a single query within Recorded Queries",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaObservabilityMetricsSquad,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
@@ -82,3 +82,4 @@ lokiPredefinedOperations,experimental,@grafana/observability-logs,false,false,fa
|
||||
pluginsFrontendSandbox,experimental,@grafana/plugins-platform-backend,false,false,false,true
|
||||
sqlDatasourceDatabaseSelection,preview,@grafana/grafana-bi-squad,false,false,false,true
|
||||
cloudWatchLogsMonacoEditor,experimental,@grafana/aws-plugins,false,false,false,true
|
||||
recordedQueriesMulti,experimental,@grafana/observability-metrics,false,false,false,false
|
||||
|
||||
|
@@ -338,4 +338,8 @@ const (
|
||||
// FlagCloudWatchLogsMonacoEditor
|
||||
// Enables the Monaco editor for CloudWatch Logs queries
|
||||
FlagCloudWatchLogsMonacoEditor = "cloudWatchLogsMonacoEditor"
|
||||
|
||||
// FlagRecordedQueriesMulti
|
||||
// Enables writing multiple items from a single query within Recorded Queries
|
||||
FlagRecordedQueriesMulti = "recordedQueriesMulti"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user