Chore: Enable external core plugins feature toggle by default (#102209)
* Turning externalCorePlugins on by default * enable externalCorePlugins feature toggle by default * fixing generated toggles ts
This commit is contained in:
@@ -43,6 +43,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
||||
| `angularDeprecationUI` | Display Angular warnings in dashboards and panels | Yes |
|
||||
| `dashgpt` | Enable AI powered features in dashboards | Yes |
|
||||
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
||||
| `externalCorePlugins` | Allow core plugins to be loaded as external | Yes |
|
||||
| `panelMonitoring` | Enables panel monitoring through logs and measurements | Yes |
|
||||
| `formatString` | Enable format string transformer | Yes |
|
||||
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists, and route /api/playlist requests to k8s | Yes |
|
||||
@@ -159,7 +160,6 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `sseGroupByDatasource` | Send query to the same datasource in a single request when using server side expressions. The `cloudWatchBatchQueries` feature toggle should be enabled if this used with CloudWatch. |
|
||||
| `libraryPanelRBAC` | Enables RBAC support for library panels |
|
||||
| `wargamesTesting` | Placeholder feature flag for internal testing |
|
||||
| `externalCorePlugins` | Allow core plugins to be loaded as external |
|
||||
| `pluginsAPIMetrics` | Sends metrics of public grafana packages usage by plugins |
|
||||
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
|
||||
| `disableClassicHTTPHistogram` | Disables classic HTTP Histogram (use with enableNativeHTTPHistogram) |
|
||||
|
||||
@@ -344,6 +344,7 @@ export interface FeatureToggles {
|
||||
alertingInsights?: boolean;
|
||||
/**
|
||||
* Allow core plugins to be loaded as external
|
||||
* @default true
|
||||
*/
|
||||
externalCorePlugins?: boolean;
|
||||
/**
|
||||
|
||||
@@ -574,8 +574,9 @@ var (
|
||||
{
|
||||
Name: "externalCorePlugins",
|
||||
Description: "Allow core plugins to be loaded as external",
|
||||
Stage: FeatureStageExperimental,
|
||||
Stage: FeatureStageGeneralAvailability,
|
||||
Owner: grafanaPluginsPlatformSquad,
|
||||
Expression: "true", // enabled by default
|
||||
},
|
||||
{
|
||||
Name: "pluginsAPIMetrics",
|
||||
|
||||
@@ -75,7 +75,7 @@ libraryPanelRBAC,experimental,@grafana/dashboards-squad,false,true,false
|
||||
lokiRunQueriesInParallel,privatePreview,@grafana/observability-logs,false,false,false
|
||||
wargamesTesting,experimental,@grafana/hosted-grafana-team,false,false,false
|
||||
alertingInsights,GA,@grafana/alerting-squad,false,false,true
|
||||
externalCorePlugins,experimental,@grafana/plugins-platform-backend,false,false,false
|
||||
externalCorePlugins,GA,@grafana/plugins-platform-backend,false,false,false
|
||||
pluginsAPIMetrics,experimental,@grafana/plugins-platform-backend,false,false,true
|
||||
externalServiceAccounts,preview,@grafana/identity-access-team,false,false,false
|
||||
panelMonitoring,GA,@grafana/dataviz-squad,false,false,true
|
||||
|
||||
|
@@ -1728,13 +1728,17 @@
|
||||
{
|
||||
"metadata": {
|
||||
"name": "externalCorePlugins",
|
||||
"resourceVersion": "1718727528075",
|
||||
"creationTimestamp": "2023-09-22T08:50:13Z"
|
||||
"resourceVersion": "1741964095787",
|
||||
"creationTimestamp": "2023-09-22T08:50:13Z",
|
||||
"annotations": {
|
||||
"grafana.app/updatedTimestamp": "2025-03-14 14:54:55.787758 +0000 UTC"
|
||||
}
|
||||
},
|
||||
"spec": {
|
||||
"description": "Allow core plugins to be loaded as external",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/plugins-platform-backend"
|
||||
"stage": "GA",
|
||||
"codeowner": "@grafana/plugins-platform-backend",
|
||||
"expression": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user