Dashboard Migrations: V20 variable syntax migration for data links and field options (#109203)
Co-authored-by: Ivan Ortega <ivanortegaalba@gmail.com> Co-authored-by: Haris Rozajac <haris.rozajac12@gmail.com>
This commit is contained in:
co-authored by
Ivan Ortega
Haris Rozajac
parent
8f2d27044d
commit
09d6d97535
@@ -5,7 +5,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
MIN_VERSION = 20
|
||||
MIN_VERSION = 19
|
||||
LATEST_VERSION = 41
|
||||
)
|
||||
|
||||
@@ -38,6 +38,7 @@ type PanelPluginInfoProvider interface {
|
||||
|
||||
func GetMigrations(dsInfoProvider DataSourceInfoProvider, panelProvider PanelPluginInfoProvider) map[int]SchemaVersionMigrationFunc {
|
||||
return map[int]SchemaVersionMigrationFunc{
|
||||
20: V20,
|
||||
21: V21,
|
||||
22: V22,
|
||||
23: V23,
|
||||
|
||||
@@ -0,0 +1,163 @@
|
||||
package schemaversion
|
||||
|
||||
import (
|
||||
"regexp"
|
||||
|
||||
"github.com/grafana/grafana/apps/dashboard/pkg/migration/utils"
|
||||
)
|
||||
|
||||
// V20 migrates legacy variable syntax in data links and field options.
|
||||
// This migration updates variable names from old syntax to new dotted syntax
|
||||
// used in data links URLs and field option titles.
|
||||
//
|
||||
// Variable syntax changes:
|
||||
// - __series_name → __series.name
|
||||
// - $__series_name → ${__series.name}
|
||||
// - __value_time → __value.time
|
||||
// - __field_name → __field.name
|
||||
// - $__field_name → ${__field.name}
|
||||
//
|
||||
// Example before migration:
|
||||
//
|
||||
// "panels": [
|
||||
// {
|
||||
// "options": {
|
||||
// "dataLinks": [
|
||||
// {
|
||||
// "url": "http://example.com?series=$__series_name&time=__value_time"
|
||||
// }
|
||||
// ],
|
||||
// "fieldOptions": {
|
||||
// "defaults": {
|
||||
// "title": "Field: __field_name",
|
||||
// "links": [
|
||||
// {
|
||||
// "url": "http://example.com?field=$__field_name"
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// ]
|
||||
//
|
||||
// Example after migration:
|
||||
//
|
||||
// "panels": [
|
||||
// {
|
||||
// "options": {
|
||||
// "dataLinks": [
|
||||
// {
|
||||
// "url": "http://example.com?series=${__series.name}&time=__value.time"
|
||||
// }
|
||||
// ],
|
||||
// "fieldOptions": {
|
||||
// "defaults": {
|
||||
// "title": "Field: __field.name",
|
||||
// "links": [
|
||||
// {
|
||||
// "url": "http://example.com?field=${__field.name}"
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// ]
|
||||
func V20(dashboard map[string]interface{}) error {
|
||||
dashboard["schemaVersion"] = 20
|
||||
|
||||
panels, ok := dashboard["panels"].([]interface{})
|
||||
if !ok {
|
||||
return nil
|
||||
}
|
||||
|
||||
for _, p := range panels {
|
||||
panel, ok := p.(map[string]interface{})
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
|
||||
// Update data links and field options in panel options
|
||||
if options, ok := panel["options"].(map[string]interface{}); ok {
|
||||
updateDataLinksVariableSyntax(options)
|
||||
updateFieldOptionsVariableSyntax(options)
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// updateDataLinksVariableSyntax updates variable syntax in panel data links
|
||||
func updateDataLinksVariableSyntax(options map[string]interface{}) {
|
||||
dataLinks, ok := options["dataLinks"].([]interface{})
|
||||
if !ok || !utils.IsArray(dataLinks) {
|
||||
return
|
||||
}
|
||||
|
||||
for _, link := range dataLinks {
|
||||
if linkMap, ok := link.(map[string]interface{}); ok {
|
||||
if url, ok := linkMap["url"].(string); ok {
|
||||
linkMap["url"] = updateVariablesSyntax(url)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// updateFieldOptionsVariableSyntax updates variable syntax in field options
|
||||
func updateFieldOptionsVariableSyntax(options map[string]interface{}) {
|
||||
fieldOptions, ok := options["fieldOptions"].(map[string]interface{})
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
|
||||
defaults, ok := fieldOptions["defaults"].(map[string]interface{})
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
|
||||
// Update field option title
|
||||
if title, ok := defaults["title"].(string); ok {
|
||||
defaults["title"] = updateVariablesSyntax(title)
|
||||
}
|
||||
|
||||
// Update field option links
|
||||
links, ok := defaults["links"].([]interface{})
|
||||
if !ok || !utils.IsArray(links) {
|
||||
return
|
||||
}
|
||||
|
||||
for _, link := range links {
|
||||
if linkMap, ok := link.(map[string]interface{}); ok {
|
||||
if url, ok := linkMap["url"].(string); ok {
|
||||
linkMap["url"] = updateVariablesSyntax(url)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Define the regex pattern to match legacy variable names
|
||||
// Pattern matches: __series_name, $__series_name, __value_time, __field_name, $__field_name
|
||||
// Defined here to avoid compilation for every function call
|
||||
var legacyVariableNamesRegex = regexp.MustCompile(`(__series_name)|(\$__series_name)|(__value_time)|(__field_name)|(\$__field_name)`)
|
||||
|
||||
// updateVariablesSyntax updates legacy variable names to new dotted syntax
|
||||
// This function replicates the frontend updateVariablesSyntax behavior
|
||||
func updateVariablesSyntax(text string) string {
|
||||
return legacyVariableNamesRegex.ReplaceAllStringFunc(text, func(match string) string {
|
||||
switch match {
|
||||
case "__series_name":
|
||||
return "__series.name"
|
||||
case "$__series_name":
|
||||
return "${__series.name}"
|
||||
case "__value_time":
|
||||
return "__value.time"
|
||||
case "__field_name":
|
||||
return "__field.name"
|
||||
case "$__field_name":
|
||||
return "${__field.name}"
|
||||
default:
|
||||
return match
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,322 @@
|
||||
package schemaversion_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/grafana/grafana/apps/dashboard/pkg/migration/schemaversion"
|
||||
)
|
||||
|
||||
func TestV20(t *testing.T) {
|
||||
tests := []migrationTestCase{
|
||||
{
|
||||
name: "panel with data links gets variable syntax migrated",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 Data Links Variable Syntax Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "timeseries",
|
||||
"title": "Panel with data links",
|
||||
"id": 1,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://mylink.com?series=$__series_name&time=__value_time&field=__field_name",
|
||||
},
|
||||
map[string]interface{}{
|
||||
"url": "http://another.com?series=${__series_name}&field=${__field_name}",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 Data Links Variable Syntax Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "timeseries",
|
||||
"title": "Panel with data links",
|
||||
"id": 1,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://mylink.com?series=${__series.name}&time=__value.time&field=__field.name",
|
||||
},
|
||||
map[string]interface{}{
|
||||
"url": "http://another.com?series=${__series.name}&field=${__field.name}",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "panel with field options title gets variable syntax migrated",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 Field Options Title Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "stat",
|
||||
"title": "Panel with field options title",
|
||||
"id": 2,
|
||||
"options": map[string]interface{}{
|
||||
"fieldOptions": map[string]interface{}{
|
||||
"defaults": map[string]interface{}{
|
||||
"title": "Series: __series_name, Field: $__field_name, Time: __value_time",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 Field Options Title Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "stat",
|
||||
"title": "Panel with field options title",
|
||||
"id": 2,
|
||||
"options": map[string]interface{}{
|
||||
"fieldOptions": map[string]interface{}{
|
||||
"defaults": map[string]interface{}{
|
||||
"title": "Series: __series.name, Field: ${__field.name}, Time: __value.time",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "panel with field options links gets variable syntax migrated",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 Field Options Links Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "gauge",
|
||||
"title": "Panel with field options links",
|
||||
"id": 3,
|
||||
"options": map[string]interface{}{
|
||||
"fieldOptions": map[string]interface{}{
|
||||
"defaults": map[string]interface{}{
|
||||
"links": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://example.com?series=__series_name&field=$__field_name",
|
||||
},
|
||||
map[string]interface{}{
|
||||
"url": "http://test.com?time=__value_time",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 Field Options Links Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "gauge",
|
||||
"title": "Panel with field options links",
|
||||
"id": 3,
|
||||
"options": map[string]interface{}{
|
||||
"fieldOptions": map[string]interface{}{
|
||||
"defaults": map[string]interface{}{
|
||||
"links": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://example.com?series=__series.name&field=${__field.name}",
|
||||
},
|
||||
map[string]interface{}{
|
||||
"url": "http://test.com?time=__value.time",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "panel with both data links and field options gets variable syntax migrated",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 Combined Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "table",
|
||||
"title": "Panel with both data links and field options",
|
||||
"id": 4,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://datalink.com?series=$__series_name",
|
||||
},
|
||||
},
|
||||
"fieldOptions": map[string]interface{}{
|
||||
"defaults": map[string]interface{}{
|
||||
"title": "Field Name: __field_name",
|
||||
"links": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://fieldlink.com?field=$__field_name&time=__value_time",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 Combined Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "table",
|
||||
"title": "Panel with both data links and field options",
|
||||
"id": 4,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://datalink.com?series=${__series.name}",
|
||||
},
|
||||
},
|
||||
"fieldOptions": map[string]interface{}{
|
||||
"defaults": map[string]interface{}{
|
||||
"title": "Field Name: __field.name",
|
||||
"links": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://fieldlink.com?field=${__field.name}&time=__value.time",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "panel without data links or field options remains unchanged",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 No Links Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "singlestat",
|
||||
"title": "Panel without links",
|
||||
"id": 5,
|
||||
"options": map[string]interface{}{
|
||||
"someOtherOption": "value",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 No Links Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "singlestat",
|
||||
"title": "Panel without links",
|
||||
"id": 5,
|
||||
"options": map[string]interface{}{
|
||||
"someOtherOption": "value",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "dashboard without panels remains unchanged",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 No Panels Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 No Panels Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "panel with empty data links array remains unchanged",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 Empty Data Links Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "graph",
|
||||
"title": "Panel with empty data links",
|
||||
"id": 6,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 Empty Data Links Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "graph",
|
||||
"title": "Panel with empty data links",
|
||||
"id": 6,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "panel with legacy variables that don't need migration",
|
||||
input: map[string]interface{}{
|
||||
"title": "V20 No Legacy Variables Migration Test Dashboard",
|
||||
"schemaVersion": 19,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "text",
|
||||
"title": "Panel with modern variables",
|
||||
"id": 7,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://modern.com?series=${__series.name}&field=${__field.name}",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
expected: map[string]interface{}{
|
||||
"title": "V20 No Legacy Variables Migration Test Dashboard",
|
||||
"schemaVersion": 20,
|
||||
"panels": []interface{}{
|
||||
map[string]interface{}{
|
||||
"type": "text",
|
||||
"title": "Panel with modern variables",
|
||||
"id": 7,
|
||||
"options": map[string]interface{}{
|
||||
"dataLinks": []interface{}{
|
||||
map[string]interface{}{
|
||||
"url": "http://modern.com?series=${__series.name}&field=${__field.name}",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
runMigrationTests(t, tests, schemaversion.V20)
|
||||
}
|
||||
Reference in New Issue
Block a user