Hi,
I’m trying to create a repeating panel showing some graph for every value of my “instance” variable. As soon as a enable the “Include all” option for the variable every panel just shows “No data in response” instead of my graph. When disabling “Include all” it works at least for individually selected instances but I would like to have it repeating for every instance…
- What Grafana version and what operating system are you using?
Grafana v8.1.1 (90c87a52f7)
- What are you trying to achieve?
I want my panel to repeat for every value of a variable.
- How are you trying to achieve it?
See dashboard JSON below.
- What happened?
The panel repeats but it says “No data in response” in every panel.
- What did you expect to happen?
Panel should repeat showing a graph for every value of the instance variable.
- Can you copy/paste the configuration(s) that you are having problems with?
{
"annotations": {
"list": [
{
"builtIn": 1,
"datasource": "-- Grafana --",
"enable": true,
"hide": true,
"iconColor": "rgba(0, 211, 255, 1)",
"name": "Annotations & Alerts",
"target": {
"limit": 100,
"matchAny": false,
"tags": [],
"type": "dashboard"
},
"type": "dashboard"
}
]
},
"editable": true,
"gnetId": null,
"graphTooltip": 0,
"id": 165,
"iteration": 1628752444905,
"links": [],
"panels": [
{
"datasource": null,
"fieldConfig": {
"defaults": {
"color": {
"mode": "palette-classic"
},
"custom": {
"axisLabel": "",
"axisPlacement": "auto",
"barAlignment": 0,
"drawStyle": "line",
"fillOpacity": 0,
"gradientMode": "none",
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
},
"lineInterpolation": "linear",
"lineWidth": 1,
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
},
"showPoints": "auto",
"spanNulls": false,
"stacking": {
"group": "A",
"mode": "none"
},
"thresholdsStyle": {
"mode": "off"
}
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"gridPos": {
"h": 9,
"w": 8,
"x": 0,
"y": 0
},
"id": 2,
"options": {
"legend": {
"calcs": [],
"displayMode": "list",
"placement": "bottom"
},
"tooltip": {
"mode": "single"
}
},
"repeat": "instance",
"repeatDirection": "h",
"targets": [
{
"exemplar": true,
"expr": "windows_os_visible_memory_bytes{instance=\"$instance\"}",
"interval": "",
"legendFormat": "",
"refId": "A"
}
],
"title": "Panel Title",
"type": "timeseries"
}
],
"schemaVersion": 30,
"style": "dark",
"tags": [],
"templating": {
"list": [
{
"allValue": null,
"current": {
"selected": false,
"text": "All",
"value": "$__all"
},
"datasource": null,
"definition": "label_values(windows_os_visible_memory_bytes, instance)",
"description": null,
"error": null,
"hide": 0,
"includeAll": true,
"label": null,
"multi": false,
"name": "instance",
"options": [],
"query": {
"query": "label_values(windows_os_visible_memory_bytes, instance)",
"refId": "StandardVariableQuery"
},
"refresh": 1,
"regex": "",
"skipUrlSync": false,
"sort": 0,
"type": "query"
}
]
},
"time": {
"from": "now-6h",
"to": "now"
},
"timepicker": {},
"timezone": "",
"title": "test",
"uid": "3dNBK6Mnz",
"version": 1
}
- Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
It just says “No data in response” for every panel.
- Did you follow any online instructions? If so, what is the URL?
Learn Grafana: How to automatically repeat rows and panels in dynamic dashboards | Grafana Labs