#I am new to writing queries in Grafana
1 messages · Page 1 of 1 (latest)
query would be something like this: avg(volume_read_latency{datacenter=~"$Datacenter",cluster=~"$Cluster",node=~"$Node"}).
which dashboard you are planning to use this query? Because this query would expect 3 variables datacenter, cluster and node, if they don't exist in that dashboard, query would break.
Hi, it would be on the node dashboard
Adding the same image here which you have added earlier, but it hasn't been included in this thread.
the query works, but i would like the graph to show me a breakout of each aggregate as opposed to a mean average of all
possibly something to do with legend values
When you apply avg function on any query it will consolidate all time series and don't give much granular detail. In your case, you should remove the avg function from query and add legend as {{aggr}} that will work.