From c9100a7213e27963f58a0ba783c9598a177384b6 Mon Sep 17 00:00:00 2001 From: mtmn <44134862+mtmn@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:45:42 +0100 Subject: [PATCH] fix(grafana): unify `datasource` usage in `grafana_seaweedfs.json` (#8635) Some panels were using `Prometheus` instead of `${DS_PROMETHEUS}` which caused missing data when other sources (e.g. VictoriaMetrics) are in use. --- other/metrics/grafana_seaweedfs.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/other/metrics/grafana_seaweedfs.json b/other/metrics/grafana_seaweedfs.json index 4d272eeb9..39cb5399d 100644 --- a/other/metrics/grafana_seaweedfs.json +++ b/other/metrics/grafana_seaweedfs.json @@ -465,7 +465,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "Prometheus", + "datasource": "${DS_PROMETHEUS}", "fill": 1, "gridPos": { "h": 6, @@ -547,7 +547,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "Prometheus", + "datasource": "${DS_PROMETHEUS}", "fill": 1, "gridPos": { "h": 6, @@ -649,7 +649,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "Prometheus", + "datasource": "${DS_PROMETHEUS}", "fill": 1, "gridPos": { "h": 6, @@ -731,7 +731,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "Prometheus", + "datasource": "${DS_PROMETHEUS}", "fill": 1, "gridPos": { "h": 6, @@ -3309,4 +3309,4 @@ "title": "SeaweedFS", "uid": "nh02dOVnz", "version": 2 -} \ No newline at end of file +}