fix(grafana): standardize CPU panel intervals to 2m

- Revert Overview panels to 2m (rate() needs sufficient data points)
- Change Cluster CPU Utilization targets to 2m for consistency
- All CPU panels now update at the same rate

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-10 03:48:21 +09:00
parent 64e129128f
commit 3516a860db

View File

@@ -114,7 +114,7 @@
"y": 1 "y": 1
}, },
"id": 77, "id": 77,
"interval": "$resolution", "interval": "2m",
"options": { "options": {
"displayMode": "lcd", "displayMode": "lcd",
"legend": { "legend": {
@@ -791,7 +791,7 @@
"y": 9 "y": 9
}, },
"id": 37, "id": 37,
"interval": "$resolution", "interval": "2m",
"options": { "options": {
"colorMode": "none", "colorMode": "none",
"graphMode": "none", "graphMode": "none",
@@ -1248,7 +1248,7 @@
"editorMode": "code", "editorMode": "code",
"exemplar": true, "exemplar": true,
"expr": "avg(sum by (instance, cpu) (rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])))", "expr": "avg(sum by (instance, cpu) (rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])))",
"interval": "$resolution", "interval": "2m",
"legendFormat": "Linux", "legendFormat": "Linux",
"range": true, "range": true,
"refId": "Linux" "refId": "Linux"
@@ -1262,7 +1262,7 @@
"exemplar": true, "exemplar": true,
"expr": "1 - avg(rate(windows_cpu_time_total{cluster=\"$cluster\",mode=\"idle\"}[$__rate_interval]))", "expr": "1 - avg(rate(windows_cpu_time_total{cluster=\"$cluster\",mode=\"idle\"}[$__rate_interval]))",
"hide": false, "hide": false,
"interval": "$resolution", "interval": "2m",
"legendFormat": "Windows", "legendFormat": "Windows",
"range": true, "range": true,
"refId": "Windows" "refId": "Windows"