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
This commit is contained in:
2026-01-10 17:33:54 +09:00
parent fa4c2ce8f6
commit 20b796f9e4

View File

@@ -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,