Files
infra/ansible/roles/monitoring_server/files/dashboards/proxmox-storage.json
T
DmitryandClaude Opus 5 c676be81ec Capture current Ansible control plane state
Commit the accumulated infrastructure work that was living only in the
working tree: monitoring stack, emergency access/bot, gyro allocator,
grimmory, adguard, backup audit and the OpenCode agent definitions.

Also ignore Python bytecode, local archives and Nix/direnv artifacts.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GTocXkGUUazHdKKd3r9k71
2026-08-26 21:39:28 +03:00

27 lines
1015 B
JSON

{
"title": "Proxmox and Storage",
"uid": "proxmox-storage",
"schemaVersion": 39,
"version": 1,
"panels": [
{
"type": "timeseries",
"title": "Node CPU Usage",
"gridPos": {"h": 9, "w": 12, "x": 0, "y": 0},
"targets": [{"expr": "1 - avg by(instance) (rate(node_cpu_seconds_total{mode=\"idle\"}[5m]))", "legendFormat": "{{instance}}", "refId": "A"}]
},
{
"type": "timeseries",
"title": "Node Memory Available",
"gridPos": {"h": 9, "w": 12, "x": 12, "y": 0},
"targets": [{"expr": "node_memory_MemAvailable_bytes", "legendFormat": "{{instance}}", "refId": "A"}]
},
{
"type": "timeseries",
"title": "Disk Read and Write",
"gridPos": {"h": 9, "w": 24, "x": 0, "y": 9},
"targets": [{"expr": "rate(node_disk_read_bytes_total[5m])", "legendFormat": "read {{instance}} {{device}}", "refId": "A"}, {"expr": "rate(node_disk_written_bytes_total[5m])", "legendFormat": "write {{instance}} {{device}}", "refId": "B"}]
}
]
}