-
What Grafana version and what operating system are you using?–>13.0.1 ; Windows
-
What are you trying to achieve?–>Trying to build an overview dashboard in tabular format that can show diff rates from diff panels of different dashboards. The process is using prometheous as data source
-
How are you trying to achieve it?–> In the grafana dashboard try to build the tables with headers and status and percenatge of error (fetched from diff panel) but that data is not coming up
-
What happened?
-
What did you expect to happen?–>Real time % data should be fetched from diff panel and shown in overview
-
Can you copy/paste the configuration(s) that you are having problems with?
-
Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.–>No
-
Did you follow any online instructions? If so, what is the URL?–>No
Welcome @ibanerjee28011999 to the community
Grafana’s built-in “Dashboard” data source can only reference panels within the same dashboard → not across different dashboards. So to build an overview table pulling metrics from multiple dashboards, you must re-query Prometheus directly in your overview dashboard.
Find your exact metric names
Open any existing source panel → click Edit → copy the PromQL query shown. That is your base query for the overview.
Alternatively go to your Prometheus URL → Query tab → start typing your metric name → autocomplete shows all available metrics.
Create overview dashboard
Dashboards → New Dashboard → Add visualization → select Prometheus as data source → change visualization to Table (top right)
Add queries
Add one query per metric. For each query set:
- Format = Table
- Type = Instant
If you want one row per service add by (service) to your PromQL:
promql
sum by (service) (rate(your_error_metric[5m]))
Transform tab
Add → Merge series/tables
Then add → Organize fields by name:
- Rename
Value #A→Error % - Rename
Value #B→Latency - Rename
Value #C→Uptime % - Hide
Timecolumn
Field overrides
Add field override for each column:
- Thresholds: 0 = green, 2 = yellow, 5 = red
- Cell display mode →
Color background
If you share your existing panel’s PromQL query I can write the exact query for your overview table


