I have JSON dashboards that I provision through the Simpod JSON plugin (version 0.6.3). I’m trying to upgrade my Grafana service from version 9.1.2 to one of the latest images, for example, 11.2.7. However, when the dashboards are provisioned through the external JSON plugin, I encounter the following error:
Templating [ident]
Error updating options: JSON.parse: unexpected character at line 1 column 31 of the JSON data
I figured out that the issue comes from the query in the templating list, which seems to be misinterpreting variables. I’d like to know if there have been any changes in Grafana that could have caused this error and how I can fix it.
For reference, I’m using SQLite as the backend. Any help would be greatly appreciated!
an example of the query section :
“query”: {
“format”: “json”,
“query”: “{"target":"Files_by_ident","client_id":$client_id,"ident":$ident}”
},