-
Bjarke Madsen authoredBjarke Madsen authored
dashboard.json.j2 859 B
{
"annotations": {
"list": [
{
"builtIn": 1,
"datasource": "-- Grafana --",
"enable": true,
"hide": true,
"iconColor": "rgba(0, 211, 255, 1)",
"name": "Annotations & Alerts",
"type": "dashboard"
}
]
},
"editable": false,
"gnetId": null,
"graphTooltip": 0,
"schemaVersion": 27,
"style": "dark",
{% if not tags %}
"tags": ["{{ tag }}"],
{% else %}
"tags": [
{% for tag in tags %}
"{{ tag }}"{{ "," if not loop.last }}
{% endfor %}
],
{% endif %}
"templating": {
"list": []
},
"time": {
"from": "now-24h",
"to": "now"
},
"timepicker": {},
"timezone": "",
"title": "{{ title }}",
"version": 1,
"links": [],
"panels": [
{% for panel in panels %}
{{ panel }}{{ "," if not loop.last }}
{% endfor %}
]
}