diff --git a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md index 4a040f36d7e..8a18b8ada9a 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -51,6 +51,7 @@ Some features are enabled by default. You can disable these feature by setting t | `panelMonitoring` | Enables panel monitoring through logs and measurements | Yes | | `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes | | `lokiStructuredMetadata` | Enables the loki data source to request structured metadata from the Loki server | Yes | +| `managedPluginsInstall` | Install managed plugins directly from plugins catalog | Yes | | `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes | | `lokiQueryHints` | Enables query hints for Loki | Yes | | `alertingQueryOptimization` | Optimizes eligible queries in order to reduce load on datasources | | @@ -88,7 +89,6 @@ Some features are enabled by default. You can disable these feature by setting t | `cloudWatchBatchQueries` | Runs CloudWatch metrics queries as separate batches | | `teamHttpHeaders` | Enables Team LBAC for datasources to apply team headers to the client requests | | `awsDatasourcesNewFormStyling` | Applies new form styling for configuration and query editors in AWS plugins | -| `managedPluginsInstall` | Install managed plugins directly from plugins catalog | | `addFieldFromCalculationStatFunctions` | Add cumulative and window functions to the add field from calculation transformation | | `pdfTables` | Enables generating table data as PDF in reporting | | `ssoSettingsApi` | Enables the SSO settings API and the OAuth configuration UIs in Grafana | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index a6e1858bca9..5997a8fe8e7 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -859,9 +859,10 @@ var ( { Name: "managedPluginsInstall", Description: "Install managed plugins directly from plugins catalog", - Stage: FeatureStagePublicPreview, + Stage: FeatureStageGeneralAvailability, RequiresDevMode: false, Owner: grafanaPluginsPlatformSquad, + Expression: "true", // enabled by default }, { Name: "prometheusPromQAIL", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 6954a9c3891..150a796449a 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -114,7 +114,7 @@ teamHttpHeaders,preview,@grafana/identity-access-team,false,false,false awsDatasourcesNewFormStyling,preview,@grafana/aws-datasources,false,false,true cachingOptimizeSerializationMemoryUsage,experimental,@grafana/grafana-operator-experience-squad,false,false,false panelTitleSearchInV1,experimental,@grafana/backend-platform,true,false,false -managedPluginsInstall,preview,@grafana/plugins-platform-backend,false,false,false +managedPluginsInstall,GA,@grafana/plugins-platform-backend,false,false,false prometheusPromQAIL,experimental,@grafana/observability-metrics,false,false,true addFieldFromCalculationStatFunctions,preview,@grafana/dataviz-squad,false,false,true alertmanagerRemoteSecondary,experimental,@grafana/alerting-squad,false,false,false diff --git a/pkg/services/featuremgmt/toggles_gen.json b/pkg/services/featuremgmt/toggles_gen.json index 0878000aae4..7307bd33bcd 100644 --- a/pkg/services/featuremgmt/toggles_gen.json +++ b/pkg/services/featuremgmt/toggles_gen.json @@ -1911,12 +1911,15 @@ { "metadata": { "name": "managedPluginsInstall", - "resourceVersion": "1709648236447", - "creationTimestamp": "2024-03-05T14:17:16Z" + "resourceVersion": "1710846414600", + "creationTimestamp": "2024-03-05T14:17:16Z", + "annotations": { + "grafana.app/updatedTimestamp": "2024-03-19 11:06:54.600063936 +0000 UTC" + } }, "spec": { "description": "Install managed plugins directly from plugins catalog", - "stage": "preview", + "stage": "GA", "codeowner": "@grafana/plugins-platform-backend" } },