0

I have created a dashboard table in Grafana to monitor CPU, RAM and I want to access detailed info dashboard by clicking on IP address of the VM.

I created a data link url for next dashboard but it is redirecting to single static IP on all IP address link I click on. Below is the example of URL I'm creating. d/bashboard_ID/mydashboardname?ordId=1&var-job=${job}&var-hostname=ALL&var-node=${__value.raw}&var-origin_prometheus=&refresh=10s

1 Answers1

0

in the link it was using different var-node values, In my case my target link had to be like below. Because server variable contained all IP address.

http://dnsurl/d/bashboard_ID/mydashboardname?ordId=1&var-job=${job}&var-hostname=ALL&var-server=${__value.raw}

Thanks @markalex for identifying the error.