We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d7f9ed commit dcbfa53Copy full SHA for dcbfa53
CHANGES.rst
@@ -5,6 +5,8 @@ grafana-wtf changelog
5
6
in progress
7
===========
8
+- Fixed 404 error on "dash-folder" dashboard type. Thanks, @oxy-star
9
+ and @GarbageYard.
10
11
2025-03-18 0.23.0
12
=================
grafana_wtf/core.py
@@ -260,6 +260,8 @@ def fetch_dashboards(self):
260
log.info("Fetching dashboards one by one")
261
results = self.data.dashboard_list
262
for dashboard_info in results:
263
+ if dashboard_info.get("type") == "dash-folder":
264
+ continue
265
self.fetch_dashboard(dashboard_info)
266
267
def fetch_dashboards_parallel(self):
0 commit comments