2025-09-28 23:09:31 +02:00
|
|
|
"use client"
|
|
|
|
|
2025-09-29 17:05:42 +02:00
|
|
|
import { useState, useEffect } from "react"
|
2025-09-28 23:09:31 +02:00
|
|
|
import { Card, CardContent, CardHeader, CardTitle } from "./ui/card"
|
|
|
|
import { Progress } from "./ui/progress"
|
|
|
|
import { Badge } from "./ui/badge"
|
|
|
|
import { XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, AreaChart, Area } from "recharts"
|
|
|
|
import { Cpu, MemoryStick, Thermometer, Users, Activity, Server, Zap } from "lucide-react"
|
|
|
|
|
2025-09-29 17:05:42 +02:00
|
|
|
interface SystemData {
|
|
|
|
cpu_usage: number
|
|
|
|
memory_usage: number
|
|
|
|
memory_total: number
|
|
|
|
memory_used: number
|
|
|
|
temperature: number
|
|
|
|
uptime: string
|
|
|
|
load_average: number[]
|
|
|
|
hostname: string
|
|
|
|
node_id: string
|
|
|
|
timestamp: string
|
|
|
|
}
|
|
|
|
|
|
|
|
interface VMData {
|
|
|
|
vmid: number
|
|
|
|
name: string
|
|
|
|
status: string
|
|
|
|
cpu: number
|
|
|
|
mem: number
|
|
|
|
maxmem: number
|
|
|
|
disk: number
|
|
|
|
maxdisk: number
|
|
|
|
uptime: number
|
|
|
|
}
|
|
|
|
|
2025-09-29 17:57:00 +02:00
|
|
|
const generateRealtimeData = () => ({
|
|
|
|
cpu_usage: Math.floor(Math.random() * 20) + 60, // 60-80%
|
|
|
|
memory_usage: Math.floor(Math.random() * 10) + 45, // 45-55%
|
|
|
|
memory_total: 32.0,
|
|
|
|
memory_used: 15.8 + Math.random() * 2, // 15.8-17.8 GB
|
|
|
|
temperature: Math.floor(Math.random() * 8) + 48, // 48-56°C
|
|
|
|
uptime: "15d 7h 23m",
|
|
|
|
load_average: [1.23, 1.45, 1.67],
|
|
|
|
hostname: "proxmox-01",
|
|
|
|
node_id: "pve-node-01",
|
|
|
|
timestamp: new Date().toISOString(),
|
|
|
|
})
|
|
|
|
|
|
|
|
const staticVMData: VMData[] = [
|
|
|
|
{
|
|
|
|
vmid: 100,
|
|
|
|
name: "web-server-01",
|
|
|
|
status: "running",
|
|
|
|
cpu: 0.45,
|
|
|
|
mem: 8589934592,
|
|
|
|
maxmem: 17179869184,
|
|
|
|
disk: 53687091200,
|
|
|
|
maxdisk: 107374182400,
|
|
|
|
uptime: 1324800,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
vmid: 101,
|
|
|
|
name: "database-server",
|
|
|
|
status: "running",
|
|
|
|
cpu: 0.23,
|
|
|
|
mem: 4294967296,
|
|
|
|
maxmem: 8589934592,
|
|
|
|
disk: 26843545600,
|
|
|
|
maxdisk: 53687091200,
|
|
|
|
uptime: 864000,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
vmid: 102,
|
|
|
|
name: "backup-server",
|
|
|
|
status: "stopped",
|
|
|
|
cpu: 0,
|
|
|
|
mem: 0,
|
|
|
|
maxmem: 4294967296,
|
|
|
|
disk: 10737418240,
|
|
|
|
maxdisk: 21474836480,
|
|
|
|
uptime: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
vmid: 103,
|
|
|
|
name: "test-server",
|
|
|
|
status: "stopped",
|
|
|
|
cpu: 0,
|
|
|
|
mem: 0,
|
|
|
|
maxmem: 2147483648,
|
|
|
|
disk: 5368709120,
|
|
|
|
maxdisk: 10737418240,
|
|
|
|
uptime: 0,
|
|
|
|
},
|
2025-09-28 23:09:31 +02:00
|
|
|
]
|
|
|
|
|
2025-09-29 17:57:00 +02:00
|
|
|
const generateChartData = () => {
|
|
|
|
const cpuData = []
|
|
|
|
const memoryData = []
|
|
|
|
|
|
|
|
for (let i = 0; i < 24; i += 4) {
|
|
|
|
const time = `${i.toString().padStart(2, "0")}:00`
|
|
|
|
cpuData.push({
|
|
|
|
time,
|
|
|
|
value: Math.floor(Math.random() * 40) + 40, // 40-80%
|
|
|
|
})
|
|
|
|
|
|
|
|
memoryData.push({
|
|
|
|
time,
|
|
|
|
used: 12 + Math.random() * 8, // 12-20 GB
|
|
|
|
available: 32 - (12 + Math.random() * 8), // Resto disponible
|
|
|
|
})
|
2025-09-29 17:05:42 +02:00
|
|
|
}
|
|
|
|
|
2025-09-29 17:57:00 +02:00
|
|
|
return { cpuData, memoryData }
|
|
|
|
}
|
2025-09-29 17:05:42 +02:00
|
|
|
|
2025-09-29 17:57:00 +02:00
|
|
|
export function SystemOverview() {
|
|
|
|
const [systemData, setSystemData] = useState<SystemData>(generateRealtimeData())
|
|
|
|
const [vmData, setVmData] = useState<VMData[]>(staticVMData)
|
|
|
|
const [chartData, setChartData] = useState(generateChartData())
|
|
|
|
const [loading, setLoading] = useState(true)
|
2025-09-29 17:05:42 +02:00
|
|
|
|
|
|
|
useEffect(() => {
|
2025-09-29 17:57:00 +02:00
|
|
|
const timer = setTimeout(() => {
|
2025-09-29 17:05:42 +02:00
|
|
|
setLoading(false)
|
2025-09-29 17:57:00 +02:00
|
|
|
}, 1000)
|
2025-09-29 17:05:42 +02:00
|
|
|
|
2025-09-29 17:57:00 +02:00
|
|
|
const interval = setInterval(() => {
|
|
|
|
setSystemData(generateRealtimeData())
|
|
|
|
setChartData(generateChartData())
|
|
|
|
}, 5000) // Actualizar cada 5 segundos
|
2025-09-29 17:05:42 +02:00
|
|
|
|
2025-09-29 17:57:00 +02:00
|
|
|
return () => {
|
|
|
|
clearTimeout(timer)
|
|
|
|
clearInterval(interval)
|
|
|
|
}
|
2025-09-29 17:05:42 +02:00
|
|
|
}, [])
|
|
|
|
|
|
|
|
const vmStats = {
|
|
|
|
total: vmData.length,
|
|
|
|
running: vmData.filter((vm) => vm.status === "running").length,
|
|
|
|
stopped: vmData.filter((vm) => vm.status === "stopped").length,
|
2025-09-29 17:57:00 +02:00
|
|
|
lxc: 0,
|
2025-09-29 17:05:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const getTemperatureStatus = (temp: number) => {
|
|
|
|
if (temp < 60) return { status: "Normal", color: "bg-green-500/10 text-green-500 border-green-500/20" }
|
|
|
|
if (temp < 75) return { status: "Warm", color: "bg-yellow-500/10 text-yellow-500 border-yellow-500/20" }
|
|
|
|
return { status: "Hot", color: "bg-red-500/10 text-red-500 border-red-500/20" }
|
|
|
|
}
|
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
return (
|
|
|
|
<div className="space-y-6">
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
|
|
|
|
{[...Array(4)].map((_, i) => (
|
|
|
|
<Card key={i} className="bg-card border-border animate-pulse">
|
|
|
|
<CardContent className="p-6">
|
|
|
|
<div className="h-4 bg-muted rounded w-1/2 mb-4"></div>
|
|
|
|
<div className="h-8 bg-muted rounded w-3/4 mb-2"></div>
|
|
|
|
<div className="h-2 bg-muted rounded w-full mb-2"></div>
|
|
|
|
<div className="h-3 bg-muted rounded w-2/3"></div>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const tempStatus = getTemperatureStatus(systemData.temperature)
|
|
|
|
|
2025-09-28 23:09:31 +02:00
|
|
|
return (
|
|
|
|
<div className="space-y-6">
|
|
|
|
{/* Key Metrics Cards */}
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
|
|
<CardTitle className="text-sm font-medium text-muted-foreground">CPU Usage</CardTitle>
|
|
|
|
<Cpu className="h-4 w-4 text-muted-foreground" />
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
2025-09-29 17:05:42 +02:00
|
|
|
<div className="text-2xl font-bold text-foreground metric-value">{systemData.cpu_usage}%</div>
|
|
|
|
<Progress value={systemData.cpu_usage} className="mt-2" />
|
2025-09-28 23:09:31 +02:00
|
|
|
<p className="text-xs text-muted-foreground mt-2 metric-label">
|
2025-09-29 17:57:00 +02:00
|
|
|
<span className="text-green-500">↓ 2.1%</span> from last hour
|
2025-09-28 23:09:31 +02:00
|
|
|
</p>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
|
|
<CardTitle className="text-sm font-medium text-muted-foreground">Memory Usage</CardTitle>
|
|
|
|
<MemoryStick className="h-4 w-4 text-muted-foreground" />
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
2025-09-29 17:57:00 +02:00
|
|
|
<div className="text-2xl font-bold text-foreground metric-value">
|
|
|
|
{systemData.memory_used.toFixed(1)} GB
|
|
|
|
</div>
|
2025-09-29 17:05:42 +02:00
|
|
|
<Progress value={systemData.memory_usage} className="mt-2" />
|
2025-09-28 23:09:31 +02:00
|
|
|
<p className="text-xs text-muted-foreground mt-2 metric-label">
|
2025-09-29 17:57:00 +02:00
|
|
|
{systemData.memory_usage.toFixed(1)}% of {systemData.memory_total} GB •{" "}
|
|
|
|
<span className="text-green-500">↑ 1.2 GB</span>
|
2025-09-28 23:09:31 +02:00
|
|
|
</p>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
|
|
<CardTitle className="text-sm font-medium text-muted-foreground">Temperature</CardTitle>
|
|
|
|
<Thermometer className="h-4 w-4 text-muted-foreground" />
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
2025-09-29 17:05:42 +02:00
|
|
|
<div className="text-2xl font-bold text-foreground metric-value">{systemData.temperature}°C</div>
|
2025-09-28 23:09:31 +02:00
|
|
|
<div className="flex items-center mt-2">
|
2025-09-29 17:05:42 +02:00
|
|
|
<Badge variant="outline" className={tempStatus.color}>
|
|
|
|
{tempStatus.status}
|
2025-09-28 23:09:31 +02:00
|
|
|
</Badge>
|
|
|
|
</div>
|
2025-09-29 17:57:00 +02:00
|
|
|
<p className="text-xs text-muted-foreground mt-2 metric-label">Max: 78°C • Avg: 48°C</p>
|
2025-09-28 23:09:31 +02:00
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
<Card className="bg-card border-border metric-card">
|
2025-09-29 17:57:00 +02:00
|
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
2025-09-29 17:05:42 +02:00
|
|
|
<CardTitle className="text-sm font-medium text-muted-foreground">Active VMs</CardTitle>
|
2025-09-28 23:09:31 +02:00
|
|
|
<Server className="h-4 w-4 text-muted-foreground" />
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
2025-09-29 17:05:42 +02:00
|
|
|
<div className="text-2xl font-bold text-foreground metric-value">{vmStats.running}</div>
|
|
|
|
<div className="vm-badges mt-2 flex flex-wrap gap-1">
|
2025-09-28 23:09:31 +02:00
|
|
|
<Badge variant="outline" className="vm-badge bg-green-500/10 text-green-500 border-green-500/20">
|
2025-09-29 17:05:42 +02:00
|
|
|
{vmStats.running} Running
|
2025-09-28 23:09:31 +02:00
|
|
|
</Badge>
|
2025-09-29 17:05:42 +02:00
|
|
|
{vmStats.stopped > 0 && (
|
|
|
|
<Badge variant="outline" className="vm-badge bg-yellow-500/10 text-yellow-500 border-yellow-500/20">
|
|
|
|
{vmStats.stopped} Stopped
|
|
|
|
</Badge>
|
|
|
|
)}
|
2025-09-28 23:09:31 +02:00
|
|
|
</div>
|
2025-09-29 17:05:42 +02:00
|
|
|
<p className="text-xs text-muted-foreground mt-2 metric-label">Total: {vmStats.total} VMs configured</p>
|
2025-09-28 23:09:31 +02:00
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{/* Charts Section */}
|
|
|
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle className="text-foreground flex items-center">
|
|
|
|
<Activity className="h-5 w-5 mr-2" />
|
|
|
|
CPU Usage (24h)
|
|
|
|
</CardTitle>
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
|
|
|
<ResponsiveContainer width="100%" height={300}>
|
2025-09-29 17:57:00 +02:00
|
|
|
<AreaChart data={chartData.cpuData}>
|
2025-09-28 23:09:31 +02:00
|
|
|
<CartesianGrid strokeDasharray="3 3" stroke="hsl(var(--border))" />
|
|
|
|
<XAxis dataKey="time" stroke="hsl(var(--muted-foreground))" fontSize={12} />
|
|
|
|
<YAxis stroke="hsl(var(--muted-foreground))" fontSize={12} />
|
|
|
|
<Tooltip
|
|
|
|
contentStyle={{
|
|
|
|
backgroundColor: "hsl(var(--card))",
|
|
|
|
border: "1px solid hsl(var(--border))",
|
|
|
|
borderRadius: "8px",
|
|
|
|
color: "hsl(var(--foreground))",
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Area type="monotone" dataKey="value" stroke="#3b82f6" fill="#3b82f6" fillOpacity={0.2} />
|
|
|
|
</AreaChart>
|
|
|
|
</ResponsiveContainer>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle className="text-foreground flex items-center">
|
|
|
|
<MemoryStick className="h-5 w-5 mr-2" />
|
|
|
|
Memory Usage (24h)
|
|
|
|
</CardTitle>
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent>
|
|
|
|
<ResponsiveContainer width="100%" height={300}>
|
2025-09-29 17:57:00 +02:00
|
|
|
<AreaChart data={chartData.memoryData}>
|
2025-09-28 23:09:31 +02:00
|
|
|
<CartesianGrid strokeDasharray="3 3" stroke="hsl(var(--border))" />
|
|
|
|
<XAxis dataKey="time" stroke="hsl(var(--muted-foreground))" fontSize={12} />
|
|
|
|
<YAxis stroke="hsl(var(--muted-foreground))" fontSize={12} />
|
|
|
|
<Tooltip
|
|
|
|
contentStyle={{
|
|
|
|
backgroundColor: "hsl(var(--card))",
|
|
|
|
border: "1px solid hsl(var(--border))",
|
|
|
|
borderRadius: "8px",
|
|
|
|
color: "hsl(var(--foreground))",
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Area type="monotone" dataKey="used" stackId="1" stroke="#3b82f6" fill="#3b82f6" fillOpacity={0.6} />
|
|
|
|
<Area
|
|
|
|
type="monotone"
|
|
|
|
dataKey="available"
|
|
|
|
stackId="1"
|
|
|
|
stroke="#10b981"
|
|
|
|
fill="#10b981"
|
|
|
|
fillOpacity={0.6}
|
|
|
|
/>
|
|
|
|
</AreaChart>
|
|
|
|
</ResponsiveContainer>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{/* System Information */}
|
|
|
|
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle className="text-foreground flex items-center">
|
|
|
|
<Server className="h-5 w-5 mr-2" />
|
|
|
|
System Information
|
|
|
|
</CardTitle>
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent className="space-y-3">
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<span className="text-muted-foreground metric-label">Hostname:</span>
|
2025-09-29 17:05:42 +02:00
|
|
|
<span className="text-foreground font-mono metric-value">{systemData.hostname}</span>
|
2025-09-28 23:09:31 +02:00
|
|
|
</div>
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<span className="text-muted-foreground metric-label">Version:</span>
|
|
|
|
<span className="text-foreground metric-value">PVE 8.1.3</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<span className="text-muted-foreground metric-label">Kernel:</span>
|
|
|
|
<span className="text-foreground font-mono metric-value">6.5.11-7-pve</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<span className="text-muted-foreground metric-label">Architecture:</span>
|
|
|
|
<span className="text-foreground metric-value">x86_64</span>
|
|
|
|
</div>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle className="text-foreground flex items-center">
|
|
|
|
<Users className="h-5 w-5 mr-2" />
|
|
|
|
Active Sessions
|
|
|
|
</CardTitle>
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent className="space-y-3">
|
|
|
|
<div className="flex justify-between items-center">
|
|
|
|
<span className="text-muted-foreground metric-label">Web Console:</span>
|
|
|
|
<Badge variant="outline" className="bg-green-500/10 text-green-500 border-green-500/20">
|
|
|
|
3 active
|
|
|
|
</Badge>
|
|
|
|
</div>
|
|
|
|
<div className="flex justify-between items-center">
|
|
|
|
<span className="text-muted-foreground metric-label">SSH Sessions:</span>
|
|
|
|
<Badge variant="outline" className="bg-blue-500/10 text-blue-500 border-blue-500/20">
|
|
|
|
1 active
|
|
|
|
</Badge>
|
|
|
|
</div>
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<span className="text-muted-foreground metric-label">API Calls:</span>
|
|
|
|
<span className="text-foreground metric-value">247/hour</span>
|
|
|
|
</div>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
<Card className="bg-card border-border metric-card">
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle className="text-foreground flex items-center">
|
|
|
|
<Zap className="h-5 w-5 mr-2" />
|
|
|
|
Power & Performance
|
|
|
|
</CardTitle>
|
|
|
|
</CardHeader>
|
|
|
|
<CardContent className="space-y-3">
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<span className="text-muted-foreground metric-label">Power State:</span>
|
|
|
|
<Badge variant="outline" className="bg-green-500/10 text-green-500 border-green-500/20">
|
|
|
|
Running
|
|
|
|
</Badge>
|
|
|
|
</div>
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<span className="text-muted-foreground metric-label">Load Average:</span>
|
2025-09-29 17:05:42 +02:00
|
|
|
<span className="text-foreground font-mono metric-value">
|
|
|
|
{systemData.load_average.map((avg) => avg.toFixed(2)).join(", ")}
|
|
|
|
</span>
|
2025-09-28 23:09:31 +02:00
|
|
|
</div>
|
|
|
|
<div className="flex justify-between">
|
2025-09-29 17:57:00 +02:00
|
|
|
<span className="text-muted-foreground metric-label">Boot Time:</span>
|
|
|
|
<span className="text-foreground metric-value">2.3s</span>
|
2025-09-28 23:09:31 +02:00
|
|
|
</div>
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|