Skip to content

Commit

Permalink
grafana: Fix logs dashboard for Grafana 8
Browse files Browse the repository at this point in the history
On Grafana 8 the logs dashboard was broken and displayed the following message :

```
Templating init failed Cannot read property 'value' of undefined
```

This is due to a missing `current` section in the dashboard template. This commit add the missing section.
  • Loading branch information
JBWatenbergScality committed Aug 5, 2021
1 parent 71f5fd3 commit a17ece0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions charts/logs-dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -1165,6 +1165,11 @@
"label": null,
"multi": true,
"name": "level",
"current": {
"selected": true,
"text": "All",
"value": "$__all"
},
"options": [
{
"selected": true,
Expand Down

0 comments on commit a17ece0

Please sign in to comment.