From 20b796f9e4d67a51b70d2ac59c93ccfa2bc5c642 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 10 Jan 2026 17:33:54 +0900 Subject: [PATCH] FIX(grafana): fix MinIO CPU Usage panel query - Hardcode job=minio and 5m interval - Change unit from 's' to 'percentunit' - Set max to 1 for proper gauge display --- grafana/dashboards/minio.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/grafana/dashboards/minio.json b/grafana/dashboards/minio.json index 6532f05..58ff5fc 100644 --- a/grafana/dashboards/minio.json +++ b/grafana/dashboards/minio.json @@ -2242,8 +2242,9 @@ } ] }, - "unit": "s", - "unitScale": true + "unit": "percentunit", + "unitScale": true, + "max": 1 }, "overrides": [] }, @@ -2278,7 +2279,7 @@ }, "editorMode": "code", "exemplar": true, - "expr": "rate(minio_node_process_cpu_total_seconds{job=~\"$scrape_jobs\"}[$__rate_interval])", + "expr": "rate(minio_node_process_cpu_total_seconds{job=\"minio\"}[5m])", "interval": "", "legendFormat": "{{server}}", "range": true,