mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Add enablePluginsTracingByDefault feature flag
This commit is contained in:
parent
6f8ddac4eb
commit
076ebe2760
@ -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
|
||||
|
||||
|
@ -171,4 +171,5 @@ export interface FeatureToggles {
|
||||
alertStateHistoryAnnotationsFromLoki?: boolean;
|
||||
lokiQueryHints?: boolean;
|
||||
alertingPreviewUpgrade?: boolean;
|
||||
enablePluginsTracingByDefault?: boolean;
|
||||
}
|
||||
|
@ -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),
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -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
|
||||
|
|
@ -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"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user