Dashboard Migrations: v27 repeated panels and constant variable (#108644)

This commit is contained in:
Haris Rozajac
2025-08-06 10:22:11 -06:00
committed by GitHub
parent d0d8b8f82d
commit fdfe123305
8 changed files with 917 additions and 1 deletions
@@ -0,0 +1,15 @@
package testutil
import (
"encoding/json"
"fmt"
)
func PrettyPrint(label string, i interface{}) {
b, err := json.MarshalIndent(i, "", " ")
if err != nil {
fmt.Println("error:", err)
return
}
fmt.Println(label, string(b))
}