fix(grafana): sync interval for CPU panels in main dashboard

- Change hardcoded "2m" interval to "$resolution" variable
- Affected panels: Global CPU Usage (id 77), CPU Usage (id 37)
- Ensures consistent refresh rate across all CPU metrics

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-10 03:46:15 +09:00
parent 518b5c31ef
commit 64e129128f

View File

@@ -114,7 +114,7 @@
"y": 1 "y": 1
}, },
"id": 77, "id": 77,
"interval": "2m", "interval": "$resolution",
"options": { "options": {
"displayMode": "lcd", "displayMode": "lcd",
"legend": { "legend": {
@@ -791,7 +791,7 @@
"y": 9 "y": 9
}, },
"id": 37, "id": 37,
"interval": "2m", "interval": "$resolution",
"options": { "options": {
"colorMode": "none", "colorMode": "none",
"graphMode": "none", "graphMode": "none",