Divide several rows into each other in graphan

I use Grafana for a toolbar and I have the following queries:

A) scale(networkstats.day.$Network.widget_requests, 0.001) B) divideSeries(networkstats.day.$Network.campaigns_spend, #A) 

and only query B. is shown

I would like to show this exact graph for all networks, not just one.

is there any way to split multiple rows by id? (in our case, the network)

thanks.

+8
graphite grafana
source share
1 answer

If $Network is a template variable defined in your dashboard with several values ​​that you can generate:

  • several lines with a graph panel for each value of $ Network setting Repeat for $Network in the Row Options

or

  • several graphic panels in one line Repeat Panel $Network in the graph settings editor on the General tab.
0
source share

All Articles