a way to convert json files into jsonnet files?

1.1k Views Asked by At

is there a way to convert json files into jsonnet files? I am working on grafana dashboards as code and need to convert a json file into jsonnet. Or is there a good guide on how to create panels in Grfana except the official Jsonnet website? I would be glad if I recieved any help from you!

1

There are 1 best solutions below

1
On

JSON files are "technically" jsonnet files already, you can prettify them to look like jsonnet with:

jsonnetfmt file.json > file.jsonnet

Of course, the above is just syntax-sugar'izing the original JSON file.

If you want to build Grafana dashboards in a programmatic way, grafonnet-lib would be the way to go