mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 04:32:30 +08:00
Plugins: Enable feature toggle enablePluginsTracingByDefault
by default (#84645)
* Enable feature flag enablePluginsTracingByDefault by default * re-generate feature toggles
This commit is contained in:
@ -55,6 +55,7 @@ Some features are enabled by default. You can disable these feature by setting t
|
|||||||
| `annotationPermissionUpdate` | Change the way annotation permissions work by scoping them to folders and dashboards. | Yes |
|
| `annotationPermissionUpdate` | Change the way annotation permissions work by scoping them to folders and dashboards. | Yes |
|
||||||
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
|
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
|
||||||
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
||||||
|
| `enablePluginsTracingByDefault` | Enable plugin tracing for all external plugins | Yes |
|
||||||
| `alertingQueryOptimization` | Optimizes eligible queries in order to reduce load on datasources | |
|
| `alertingQueryOptimization` | Optimizes eligible queries in order to reduce load on datasources | |
|
||||||
| `betterPageScrolling` | Removes CustomScrollbar from the UI, relying on native browser scrollbars | Yes |
|
| `betterPageScrolling` | Removes CustomScrollbar from the UI, relying on native browser scrollbars | Yes |
|
||||||
|
|
||||||
@ -164,7 +165,6 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
|
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
|
||||||
| `tableSharedCrosshair` | Enables shared crosshair in table panel |
|
| `tableSharedCrosshair` | Enables shared crosshair in table panel |
|
||||||
| `kubernetesFeatureToggles` | Use the kubernetes API for feature toggle management in the frontend |
|
| `kubernetesFeatureToggles` | Use the kubernetes API for feature toggle management in the frontend |
|
||||||
| `enablePluginsTracingByDefault` | Enable plugin tracing for all external plugins |
|
|
||||||
| `newFolderPicker` | Enables the nested folder picker without having nested folders enabled |
|
| `newFolderPicker` | Enables the nested folder picker without having nested folders enabled |
|
||||||
| `onPremToCloudMigrations` | In-development feature that will allow users to easily migrate their on-prem Grafana instances to Grafana Cloud. |
|
| `onPremToCloudMigrations` | In-development feature that will allow users to easily migrate their on-prem Grafana instances to Grafana Cloud. |
|
||||||
| `promQLScope` | In-development feature that will allow injection of labels into prometheus queries. |
|
| `promQLScope` | In-development feature that will allow injection of labels into prometheus queries. |
|
||||||
|
@ -1030,9 +1030,10 @@ var (
|
|||||||
Name: "enablePluginsTracingByDefault",
|
Name: "enablePluginsTracingByDefault",
|
||||||
Description: "Enable plugin tracing for all external plugins",
|
Description: "Enable plugin tracing for all external plugins",
|
||||||
FrontendOnly: false,
|
FrontendOnly: false,
|
||||||
Stage: FeatureStageExperimental,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
Owner: grafanaPluginsPlatformSquad,
|
Owner: grafanaPluginsPlatformSquad,
|
||||||
RequiresRestart: true,
|
RequiresRestart: true,
|
||||||
|
Expression: "true", // enabled by default
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "cloudRBACRoles",
|
Name: "cloudRBACRoles",
|
||||||
|
@ -137,7 +137,7 @@ tableSharedCrosshair,experimental,@grafana/dataviz-squad,false,false,true
|
|||||||
regressionTransformation,preview,@grafana/dataviz-squad,false,false,true
|
regressionTransformation,preview,@grafana/dataviz-squad,false,false,true
|
||||||
lokiQueryHints,GA,@grafana/observability-logs,false,false,true
|
lokiQueryHints,GA,@grafana/observability-logs,false,false,true
|
||||||
kubernetesFeatureToggles,experimental,@grafana/grafana-operator-experience-squad,false,false,true
|
kubernetesFeatureToggles,experimental,@grafana/grafana-operator-experience-squad,false,false,true
|
||||||
enablePluginsTracingByDefault,experimental,@grafana/plugins-platform-backend,false,true,false
|
enablePluginsTracingByDefault,GA,@grafana/plugins-platform-backend,false,true,false
|
||||||
cloudRBACRoles,experimental,@grafana/identity-access-team,false,true,false
|
cloudRBACRoles,experimental,@grafana/identity-access-team,false,true,false
|
||||||
alertingQueryOptimization,GA,@grafana/alerting-squad,false,false,false
|
alertingQueryOptimization,GA,@grafana/alerting-squad,false,false,false
|
||||||
newFolderPicker,experimental,@grafana/grafana-frontend-platform,false,false,true
|
newFolderPicker,experimental,@grafana/grafana-frontend-platform,false,false,true
|
||||||
|
|
@ -973,12 +973,15 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "enablePluginsTracingByDefault",
|
"name": "enablePluginsTracingByDefault",
|
||||||
"resourceVersion": "1709648236447",
|
"resourceVersion": "1710760980171",
|
||||||
"creationTimestamp": "2024-03-05T14:17:16Z"
|
"creationTimestamp": "2024-03-05T14:17:16Z",
|
||||||
|
"annotations": {
|
||||||
|
"grafana.app/updatedTimestamp": "2024-03-18 11:23:00.171105276 +0000 UTC"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enable plugin tracing for all external plugins",
|
"description": "Enable plugin tracing for all external plugins",
|
||||||
"stage": "experimental",
|
"stage": "GA",
|
||||||
"codeowner": "@grafana/plugins-platform-backend",
|
"codeowner": "@grafana/plugins-platform-backend",
|
||||||
"requiresRestart": true
|
"requiresRestart": true
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user