Hey everyone
I have a simple question, so i have a table with as field ‘nodes’, and under this field some rows filled with node names
But i want for every row (raspi001, raspi002,…) a different link to another dashboard
so each row has a different dashboard it’s linked to
However i’ve only found how to make 1 similar link for everything, but i want to have 1 for every row, how can i implement this?
at this moment all rows are clickable but refer to the same dashboard
PLEASE HELP <3
greetings Kirito
have you tried using URL variables like $__value.text
?
I have this question also. Adding $__value.text did not fix the issue.
Notice the link at the bottom
https://github.com/yosiasz/grafanadashboards/blob/main/src/dashboards/datalinks.json
Linking for every row/cell is possible.
In my case, I needed to add dashboard links for each row within a table.
To achieve that, follow these steps:
- Add the “URL” of the “Edit link” as a variable in “Data links”:
To do this, you can define a variable that holds the URL for the “Edit links.”
For example: /d/${__data.fields["Server Name"]}
- Replace UID of dashboard that you want to link in “JSON Model” of “Settings” with a variable that you defined above
For example: “uid”: “f5f2310XXX”-> “uid”: “test01-cp01”,
2 Likes