mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
scopes: behind its own feature flag (#97077)
Signed-off-by: bergquist <carl.bergquist@gmail.com>
This commit is contained in:
parent
f6ccf976e5
commit
21bd47e512
@ -189,6 +189,7 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `newFolderPicker` | Enables the nested folder picker without having nested folders enabled |
|
| `newFolderPicker` | Enables the nested folder picker without having nested folders enabled |
|
||||||
| `onPremToCloudMigrationsAlerts` | Enables the migration of alerts and its child resources to your Grafana Cloud stack. Requires `onPremToCloudMigrations` to be enabled in conjunction. |
|
| `onPremToCloudMigrationsAlerts` | Enables the migration of alerts and its child resources to your Grafana Cloud stack. Requires `onPremToCloudMigrations` to be enabled in conjunction. |
|
||||||
| `onPremToCloudMigrationsAuthApiMig` | Enables the use of auth api instead of gcom for internal token services. Requires `onPremToCloudMigrations` to be enabled in conjunction. |
|
| `onPremToCloudMigrationsAuthApiMig` | Enables the use of auth api instead of gcom for internal token services. Requires `onPremToCloudMigrations` to be enabled in conjunction. |
|
||||||
|
| `scopeApi` | In-development feature flag for the scope api using the app platform. |
|
||||||
| `sqlExpressions` | Enables using SQL and DuckDB functions as Expressions. |
|
| `sqlExpressions` | Enables using SQL and DuckDB functions as Expressions. |
|
||||||
| `nodeGraphDotLayout` | Changed the layout algorithm for the node graph |
|
| `nodeGraphDotLayout` | Changed the layout algorithm for the node graph |
|
||||||
| `kubernetesAggregator` | Enable grafana's embedded kube-aggregator |
|
| `kubernetesAggregator` | Enable grafana's embedded kube-aggregator |
|
||||||
|
@ -160,6 +160,7 @@ export interface FeatureToggles {
|
|||||||
onPremToCloudMigrationsAlerts?: boolean;
|
onPremToCloudMigrationsAlerts?: boolean;
|
||||||
onPremToCloudMigrationsAuthApiMig?: boolean;
|
onPremToCloudMigrationsAuthApiMig?: boolean;
|
||||||
alertingSaveStatePeriodic?: boolean;
|
alertingSaveStatePeriodic?: boolean;
|
||||||
|
scopeApi?: boolean;
|
||||||
promQLScope?: boolean;
|
promQLScope?: boolean;
|
||||||
logQLScope?: boolean;
|
logQLScope?: boolean;
|
||||||
sqlExpressions?: boolean;
|
sqlExpressions?: boolean;
|
||||||
|
@ -29,7 +29,8 @@ func NewScopeAPIBuilder() *ScopeAPIBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func RegisterAPIService(features featuremgmt.FeatureToggles, apiregistration builder.APIRegistrar, reg prometheus.Registerer) *ScopeAPIBuilder {
|
func RegisterAPIService(features featuremgmt.FeatureToggles, apiregistration builder.APIRegistrar, reg prometheus.Registerer) *ScopeAPIBuilder {
|
||||||
if !features.IsEnabledGlobally(featuremgmt.FlagGrafanaAPIServerWithExperimentalAPIs) {
|
if !(features.IsEnabledGlobally(featuremgmt.FlagScopeApi) ||
|
||||||
|
features.IsEnabledGlobally(featuremgmt.FlagGrafanaAPIServerWithExperimentalAPIs)) {
|
||||||
return nil // skip registration unless opting into experimental apis
|
return nil // skip registration unless opting into experimental apis
|
||||||
}
|
}
|
||||||
builder := NewScopeAPIBuilder()
|
builder := NewScopeAPIBuilder()
|
||||||
|
@ -1070,6 +1070,14 @@ var (
|
|||||||
FrontendOnly: false,
|
FrontendOnly: false,
|
||||||
Owner: grafanaAlertingSquad,
|
Owner: grafanaAlertingSquad,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "scopeApi",
|
||||||
|
Description: "In-development feature flag for the scope api using the app platform.",
|
||||||
|
Stage: FeatureStageExperimental,
|
||||||
|
Owner: grafanaAppPlatformSquad,
|
||||||
|
HideFromAdminPage: true,
|
||||||
|
Expression: "false",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Name: "promQLScope",
|
Name: "promQLScope",
|
||||||
Description: "In-development feature that will allow injection of labels into prometheus queries.",
|
Description: "In-development feature that will allow injection of labels into prometheus queries.",
|
||||||
|
@ -141,6 +141,7 @@ onPremToCloudMigrations,preview,@grafana/grafana-operator-experience-squad,false
|
|||||||
onPremToCloudMigrationsAlerts,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
onPremToCloudMigrationsAlerts,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
||||||
onPremToCloudMigrationsAuthApiMig,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
onPremToCloudMigrationsAuthApiMig,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
||||||
alertingSaveStatePeriodic,privatePreview,@grafana/alerting-squad,false,false,false
|
alertingSaveStatePeriodic,privatePreview,@grafana/alerting-squad,false,false,false
|
||||||
|
scopeApi,experimental,@grafana/grafana-app-platform-squad,false,false,false
|
||||||
promQLScope,GA,@grafana/observability-metrics,false,false,false
|
promQLScope,GA,@grafana/observability-metrics,false,false,false
|
||||||
logQLScope,privatePreview,@grafana/observability-logs,false,false,false
|
logQLScope,privatePreview,@grafana/observability-logs,false,false,false
|
||||||
sqlExpressions,experimental,@grafana/grafana-app-platform-squad,false,false,false
|
sqlExpressions,experimental,@grafana/grafana-app-platform-squad,false,false,false
|
||||||
|
|
@ -575,6 +575,10 @@ const (
|
|||||||
// Writes the state periodically to the database, asynchronous to rule evaluation
|
// Writes the state periodically to the database, asynchronous to rule evaluation
|
||||||
FlagAlertingSaveStatePeriodic = "alertingSaveStatePeriodic"
|
FlagAlertingSaveStatePeriodic = "alertingSaveStatePeriodic"
|
||||||
|
|
||||||
|
// FlagScopeApi
|
||||||
|
// In-development feature flag for the scope api using the app platform.
|
||||||
|
FlagScopeApi = "scopeApi"
|
||||||
|
|
||||||
// FlagPromQLScope
|
// FlagPromQLScope
|
||||||
// In-development feature that will allow injection of labels into prometheus queries.
|
// In-development feature that will allow injection of labels into prometheus queries.
|
||||||
FlagPromQLScope = "promQLScope"
|
FlagPromQLScope = "promQLScope"
|
||||||
|
@ -3130,6 +3130,20 @@
|
|||||||
"frontend": true
|
"frontend": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"metadata": {
|
||||||
|
"name": "scopeApi",
|
||||||
|
"resourceVersion": "1732690644377",
|
||||||
|
"creationTimestamp": "2024-11-27T06:57:24Z"
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"description": "In-development feature flag for the scope api using the app platform.",
|
||||||
|
"stage": "experimental",
|
||||||
|
"codeowner": "@grafana/grafana-app-platform-squad",
|
||||||
|
"hideFromAdminPage": true,
|
||||||
|
"expression": "false"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "scopeFilters",
|
"name": "scopeFilters",
|
||||||
|
Loading…
Reference in New Issue
Block a user