Add enablePluginsTracingByDefault feature flag

This commit is contained in:
Giuseppe Guerra 2024-01-09 10:27:09 +01:00
parent 6f8ddac4eb
commit 076ebe2760
No known key found for this signature in database
5 changed files with 15 additions and 0 deletions

View File

@ -169,6 +169,7 @@ Experimental features might be changed or removed without prior notice.
| `flameGraphItemCollapsing` | Allow collapsing of flame graph items |
| `pluginsSkipHostEnvVars` | Disables passing host environment variable to plugin processes |
| `tableSharedCrosshair` | Enables shared crosshair in table panel |
| `enablePluginsTracingByDefault` | Enable plugin tracing for all external plugins |
## Development feature toggles

View File

@ -171,4 +171,5 @@ export interface FeatureToggles {
alertStateHistoryAnnotationsFromLoki?: boolean;
lokiQueryHints?: boolean;
alertingPreviewUpgrade?: boolean;
enablePluginsTracingByDefault?: boolean;
}

View File

@ -1297,5 +1297,13 @@ var (
RequiresRestart: true,
Created: time.Date(2024, time.January, 3, 12, 0, 0, 0, time.UTC),
},
{
Name: "enablePluginsTracingByDefault",
Description: "Enable plugin tracing for all external plugins",
FrontendOnly: false,
Stage: FeatureStageExperimental,
Owner: grafanaPluginsPlatformSquad,
Created: time.Date(2024, time.January, 9, 12, 0, 0, 0, time.UTC),
},
}
)

View File

@ -152,3 +152,4 @@ displayAnonymousStats,GA,@grafana/identity-access-team,2023-11-29,false,false,fa
alertStateHistoryAnnotationsFromLoki,experimental,@grafana/alerting-squad,2023-11-30,false,false,true,false
lokiQueryHints,GA,@grafana/observability-logs,2023-12-18,false,false,false,true
alertingPreviewUpgrade,experimental,@grafana/alerting-squad,2024-01-03,false,false,true,false
enablePluginsTracingByDefault,experimental,@grafana/plugins-platform-backend,2024-01-09,false,false,false,false

1 Name Stage Owner Created requiresDevMode RequiresLicense RequiresRestart FrontendOnly
152 alertStateHistoryAnnotationsFromLoki experimental @grafana/alerting-squad 2023-11-30 false false true false
153 lokiQueryHints GA @grafana/observability-logs 2023-12-18 false false false true
154 alertingPreviewUpgrade experimental @grafana/alerting-squad 2024-01-03 false false true false
155 enablePluginsTracingByDefault experimental @grafana/plugins-platform-backend 2024-01-09 false false false false

View File

@ -618,4 +618,8 @@ const (
// FlagAlertingPreviewUpgrade
// Show Unified Alerting preview and upgrade page in legacy alerting
FlagAlertingPreviewUpgrade = "alertingPreviewUpgrade"
// FlagEnablePluginsTracingByDefault
// Enable plugin tracing for all external plugins
FlagEnablePluginsTracingByDefault = "enablePluginsTracingByDefault"
)