Is there any solution to pass multi value variable between dashboards? The multi value should be passed in URL as:
&var-name=value1&var-name=value2&… etc.
I tried with https://grafana.com/docs/grafana/latest/reference/templating/ and advanced formatting but closest to what I need is :Distributed. I get value1,var-name=value2,var-name=value3
All I need now is replace comma with ampersand. Any idea how to do it?
You can do this using “queryparam” instead.
If i have "day” and multiple months (multi select) on your url you add:
….&var-day=$day&${months:queryparam}
${months:queryparam} will be replaced with var-months=1&var-months=2,etc