58915bd384
* migrate to v19 * migrate to v18 * Migration to be verified: v17 Convert minSpan to maxPerRow in panels * Migration to be verified: 16 Grid layout migration * Refactor v17 and v19 migrations to use shared helper functions * Migration to be verified: 15 No-op migration for schema consistency * Migration to be verified: 14 Shared crosshair to graph tooltip migration * cleanup * wip * complete migration * fix lint issues * refactor and test with minimal graph config * update tests * migrate to v12 * extract defaults outside the func * lint * lint * add missing showValues prop * migrate to v11 * migrate to v10 * add test files * update * migrate to v9 * migrate to v8 * add context and fix latest version * add context * add context * generate snapshots * v13 should be no-op * clean up * fix tests * add context * snapshots * generate snapshots * update * snapshots * wip * fix test * remove nav when cleaning up defaults * remove v28 * remove singlestat migraiton from frontend migrator because this is an automigration * remove unused function * Remove v24 table plugin logic * cleanup * remove plugin version for automigrate as it was used only in v24 and v28 that have been removed * cleanup * update snapshot * update snapshot * update snapshot * lint --------- Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
74 lines
2.0 KiB
Go
74 lines
2.0 KiB
Go
package schemaversion
|
|
|
|
import "context"
|
|
|
|
// V7 migration handles the nav to timepicker conversion and ensures query refIds.
|
|
// This migration transforms the legacy nav property to the newer timepicker format
|
|
// and ensures all panel targets have refId properties.
|
|
//
|
|
// Background:
|
|
// In earlier versions, dashboards used a "nav" property array to store time picker
|
|
// configuration. This migration moves the first nav item to the "timepicker" property.
|
|
// Additionally, it ensures all query targets have refId properties assigned.
|
|
//
|
|
// Example before migration:
|
|
// {
|
|
// "schemaVersion": 6,
|
|
// "nav": [
|
|
// {
|
|
// "enable": true,
|
|
// "type": "timepicker",
|
|
// "status": "Stable",
|
|
// "time_options": ["5m", "15m", "1h", "6h", "12h", "24h", "2d", "7d", "30d"],
|
|
// "refresh_intervals": ["5s", "10s", "30s", "1m", "5m", "15m", "30m", "1h", "2h", "1d"],
|
|
// "now": true,
|
|
// "collapse": false,
|
|
// "notice": false
|
|
// }
|
|
// ],
|
|
// "panels": [
|
|
// {
|
|
// "targets": [
|
|
// {"expr": "up"},
|
|
// {"expr": "cpu_usage", "refId": "B"}
|
|
// ]
|
|
// }
|
|
// ]
|
|
// }
|
|
//
|
|
// Example after migration:
|
|
// {
|
|
// "schemaVersion": 7,
|
|
// "timepicker": {
|
|
// "enable": true,
|
|
// "type": "timepicker",
|
|
// "status": "Stable",
|
|
// "time_options": ["5m", "15m", "1h", "6h", "12h", "24h", "2d", "7d", "30d"],
|
|
// "refresh_intervals": ["5s", "10s", "30s", "1m", "5m", "15m", "30m", "1h", "2h", "1d"],
|
|
// "now": true,
|
|
// "collapse": false,
|
|
// "notice": false
|
|
// },
|
|
// "panels": [
|
|
// {
|
|
// "targets": [
|
|
// {"expr": "up", "refId": "A"},
|
|
// {"expr": "cpu_usage", "refId": "B"}
|
|
// ]
|
|
// }
|
|
// ]
|
|
// }
|
|
|
|
func V7(_ context.Context, dashboard map[string]interface{}) error {
|
|
dashboard["schemaVersion"] = 7
|
|
|
|
// Convert nav to timepicker (matches frontend DashboardMigrator logic)
|
|
if nav, ok := dashboard["nav"].([]interface{}); ok && len(nav) > 0 {
|
|
if firstNav, ok := nav[0].(map[string]interface{}); ok {
|
|
dashboard["timepicker"] = firstNav
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|