Files
Sankofa/infrastructure/monitoring/dashboards/proxmox-node.json
defiQUG 9daf1fd378 Apply Composer changes: comprehensive API updates, migrations, middleware, and infrastructure improvements
- Add comprehensive database migrations (001-024) for schema evolution
- Enhance API schema with expanded type definitions and resolvers
- Add new middleware: audit logging, rate limiting, MFA enforcement, security, tenant auth
- Implement new services: AI optimization, billing, blockchain, compliance, marketplace
- Add adapter layer for cloud integrations (Cloudflare, Kubernetes, Proxmox, storage)
- Update Crossplane provider with enhanced VM management capabilities
- Add comprehensive test suite for API endpoints and services
- Update frontend components with improved GraphQL subscriptions and real-time updates
- Enhance security configurations and headers (CSP, CORS, etc.)
- Update documentation and configuration files
- Add new CI/CD workflows and validation scripts
- Implement design system improvements and UI enhancements
2025-12-12 18:01:35 -08:00

132 lines
3.1 KiB
JSON

{
"dashboard": {
"title": "Proxmox Node Details",
"tags": ["proxmox", "node", "infrastructure"],
"timezone": "browser",
"schemaVersion": 16,
"version": 1,
"refresh": "30s",
"panels": [
{
"id": 1,
"title": "Node Status",
"type": "stat",
"targets": [
{
"expr": "up{job=\"pve_exporter\",instance=~\"$node\"}",
"legendFormat": "{{instance}}"
}
],
"gridPos": {"h": 4, "w": 6, "x": 0, "y": 0}
},
{
"id": 2,
"title": "CPU Usage",
"type": "gauge",
"targets": [
{
"expr": "pve_node_cpu_usage{node=~\"$node\"}",
"legendFormat": "{{node}}"
}
],
"gridPos": {"h": 4, "w": 6, "x": 6, "y": 0}
},
{
"id": 3,
"title": "Memory Usage",
"type": "gauge",
"targets": [
{
"expr": "pve_node_memory_usage{node=~\"$node\"}",
"legendFormat": "{{node}}"
}
],
"gridPos": {"h": 4, "w": 6, "x": 12, "y": 0}
},
{
"id": 4,
"title": "CPU Usage Over Time",
"type": "graph",
"targets": [
{
"expr": "pve_node_cpu_usage{node=~\"$node\"}",
"legendFormat": "{{node}}"
}
],
"gridPos": {"h": 8, "w": 12, "x": 0, "y": 4}
},
{
"id": 5,
"title": "Memory Usage Over Time",
"type": "graph",
"targets": [
{
"expr": "pve_node_memory_usage{node=~\"$node\"}",
"legendFormat": "{{node}}"
}
],
"gridPos": {"h": 8, "w": 12, "x": 12, "y": 4}
},
{
"id": 6,
"title": "Storage Usage by Pool",
"type": "graph",
"targets": [
{
"expr": "pve_storage_usage{node=~\"$node\"}",
"legendFormat": "{{storage}}"
}
],
"gridPos": {"h": 8, "w": 12, "x": 0, "y": 12}
},
{
"id": 7,
"title": "Network I/O",
"type": "graph",
"targets": [
{
"expr": "pve_node_net_in{node=~\"$node\"}",
"legendFormat": "{{node}} - In"
},
{
"expr": "pve_node_net_out{node=~\"$node\"}",
"legendFormat": "{{node}} - Out"
}
],
"gridPos": {"h": 8, "w": 12, "x": 12, "y": 12}
},
{
"id": 8,
"title": "Disk I/O",
"type": "graph",
"targets": [
{
"expr": "pve_node_disk_read{node=~\"$node\"}",
"legendFormat": "{{node}} - Read"
},
{
"expr": "pve_node_disk_write{node=~\"$node\"}",
"legendFormat": "{{node}} - Write"
}
],
"gridPos": {"h": 8, "w": 24, "x": 0, "y": 20}
}
],
"templating": {
"list": [
{
"name": "node",
"type": "query",
"query": "label_values(pve_node_info, node)",
"current": {
"text": "All",
"value": "$__all"
},
"options": []
}
]
}
}
}