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.
-- Mixed --
1 parent 074d5b2 commit bcdd927Copy full SHA for bcdd927
CHANGES.rst
@@ -5,6 +5,7 @@ grafana-wtf changelog
5
6
in progress
7
===========
8
+- Explore dashboards: Ignore ``-- Mixed --`` data sources
9
10
2023-03-05 0.14.1
11
=================
grafana_wtf/core.py
@@ -447,7 +447,7 @@ def explore_dashboards(self):
447
datasources_existing = []
448
datasources_missing = []
449
for datasource_item in datasource_items:
450
- if datasource_item.name == "-- Grafana --":
+ if datasource_item.name in ["-- Grafana --", "-- Mixed --"]:
451
continue
452
datasource_by_uid = ix.datasource_by_uid.get(datasource_item.uid)
453
datasource_by_name = ix.datasource_by_name.get(datasource_item.name)
0 commit comments