Hello, I’m trying to use the Node Exporter Quickstart and Dashboard, offered at Node Exporter Quickstart and Dashboard dashboard for Grafana | Grafana Labs.
I got a blank dashboard layout, but no data from my data source. Then I looked at the queries, and I find they all have a instance="$instance argument For example in the CPU Usage graph:
(
(1 - rate(node_cpu_seconds_total{job=“node”, mode=“idle”, instance="instance"}[__interval]))
/ ignoring(cpu) group_left
count without (cpu)( node_cpu_seconds_total{job=“node”, mode=“idle”, instance="$instance"})
)
It seems as though there should be an instance selector, as there is an Instance selector at the top of the dashboard. But there’s nothing there to select.
If I simply remove instance="$instance from the query, I then get data, all instances show.
Also the $__interval causes no data to return. If I replace that with a hard coded 1m or 5m does return data.
So it seems these “$” values (variables??) don’t work. How can I resolve that?