mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Playlist: Add watch feature toggle (#95730)
This commit is contained in:
parent
620fb87fb8
commit
403b60723d
@ -215,6 +215,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `timeRangeProvider` | Enables time pickers sync |
|
||||
| `prometheusUsesCombobox` | Use new combobox component for Prometheus query editor |
|
||||
| `dashboardSchemaV2` | Enables the new dashboard schema version 2, implementing changes necessary for dynamic dashboards and dashboards as code. |
|
||||
| `playlistsWatcher` | Enables experimental watcher for playlists |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -226,4 +226,5 @@ export interface FeatureToggles {
|
||||
prometheusUsesCombobox?: boolean;
|
||||
azureMonitorDisableLogLimit?: boolean;
|
||||
dashboardSchemaV2?: boolean;
|
||||
playlistsWatcher?: boolean;
|
||||
}
|
||||
|
@ -1556,6 +1556,13 @@ var (
|
||||
Owner: grafanaDashboardsSquad,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
{
|
||||
Name: "playlistsWatcher",
|
||||
Description: "Enables experimental watcher for playlists",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaAppPlatformSquad,
|
||||
RequiresRestart: true,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -207,3 +207,4 @@ timeRangeProvider,experimental,@grafana/grafana-frontend-platform,false,false,fa
|
||||
prometheusUsesCombobox,experimental,@grafana/observability-metrics,false,false,false
|
||||
azureMonitorDisableLogLimit,GA,@grafana/partner-datasources,false,false,false
|
||||
dashboardSchemaV2,experimental,@grafana/dashboards-squad,false,false,true
|
||||
playlistsWatcher,experimental,@grafana/grafana-app-platform-squad,false,true,false
|
||||
|
|
@ -838,4 +838,8 @@ const (
|
||||
// FlagDashboardSchemaV2
|
||||
// Enables the new dashboard schema version 2, implementing changes necessary for dynamic dashboards and dashboards as code.
|
||||
FlagDashboardSchemaV2 = "dashboardSchemaV2"
|
||||
|
||||
// FlagPlaylistsWatcher
|
||||
// Enables experimental watcher for playlists
|
||||
FlagPlaylistsWatcher = "playlistsWatcher"
|
||||
)
|
||||
|
@ -2416,6 +2416,19 @@
|
||||
"expression": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "playlistsWatcher",
|
||||
"resourceVersion": "1730462910506",
|
||||
"creationTimestamp": "2024-11-01T12:08:30Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables experimental watcher for playlists",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/grafana-app-platform-squad",
|
||||
"requiresRestart": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "pluginProxyPreserveTrailingSlash",
|
||||
|
Loading…
Reference in New Issue
Block a user