Files
grafana/apps/dashboard/pkg/migration/testdata/input/v8.influxdb_query.json
Haris Rozajac b232a812ab Dashboard Migrations: V8 - update old influxdb schema (#111423)
* 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

* fix test

* 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

---------

Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
2025-10-10 12:47:26 -06:00

68 lines
1.2 KiB
JSON

{
"title": "V8 InfluxDB Query Test",
"schemaVersion": 7,
"panels": [
{
"id": 1,
"type": "graph",
"targets": [
{
"fields": [
{
"name": "value",
"func": "mean",
"mathExpr": "*2",
"asExpr": "doubled"
}
],
"tags": [
{
"key": "host",
"value": "server1"
}
],
"groupBy": [
{
"type": "time",
"interval": "1m"
},
{
"type": "tag",
"key": "host"
}
],
"fill": "null"
}
]
},
{
"id": 2,
"type": "graph",
"targets": [
{
"rawQuery": true,
"fields": [
{
"name": "value",
"func": "mean"
}
],
"tags": [
{
"key": "host",
"value": "server1"
}
],
"groupBy": [
{
"type": "time",
"interval": "1m"
}
],
"fill": "null"
}
]
}
]
}