mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-18 11:36:17 +00:00
Update metrics-dialog.tsx
This commit is contained in:
@@ -4,7 +4,7 @@ import { useState, useEffect } from "react"
|
|||||||
import { Button } from "@/components/ui/button"
|
import { Button } from "@/components/ui/button"
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
|
||||||
import { ArrowLeft, Loader2 } from "lucide-react"
|
import { ArrowLeft, Loader2 } from "lucide-react"
|
||||||
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, Legend } from "recharts"
|
import { AreaChart, Area, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, Legend } from "recharts"
|
||||||
|
|
||||||
interface MetricsViewProps {
|
interface MetricsViewProps {
|
||||||
vmid: number
|
vmid: number
|
||||||
@@ -131,170 +131,239 @@ export function MetricsView({ vmid, vmName, vmType, metricType, onBack }: Metric
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const formatXAxisTick = (tick: any) => {
|
||||||
|
return tick
|
||||||
|
}
|
||||||
|
|
||||||
const renderChart = () => {
|
const renderChart = () => {
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center justify-center h-96">
|
<div className="flex items-center justify-center h-[400px]">
|
||||||
<Loader2 className="h-8 w-8 animate-spin text-primary" />
|
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center justify-center h-96">
|
<div className="flex items-center justify-center h-[400px]">
|
||||||
<p className="text-destructive">{error}</p>
|
<p className="text-red-500">{error}</p>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data.length === 0) {
|
if (data.length === 0) {
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center justify-center h-96">
|
<div className="flex items-center justify-center h-[400px]">
|
||||||
<p className="text-muted-foreground">No data available</p>
|
<p className="text-muted-foreground">No data available</p>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const tickInterval = Math.ceil(data.length / 10)
|
// Calculate tick interval based on data length
|
||||||
|
const tickInterval = Math.ceil(data.length / 8)
|
||||||
|
|
||||||
switch (metricType) {
|
switch (metricType) {
|
||||||
case "cpu":
|
case "cpu":
|
||||||
return (
|
return (
|
||||||
<ResponsiveContainer width="100%" height={400}>
|
<ResponsiveContainer width="100%" height={400}>
|
||||||
<LineChart data={data}>
|
<AreaChart data={data}>
|
||||||
<CartesianGrid strokeDasharray="3 3" stroke="hsl(var(--border))" />
|
<CartesianGrid strokeDasharray="3 3" stroke="currentColor" className="text-border" />
|
||||||
<XAxis
|
<XAxis
|
||||||
dataKey="time"
|
dataKey="time"
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
tick={{ fill: "currentColor", fontSize: 12 }}
|
|
||||||
className="text-foreground"
|
className="text-foreground"
|
||||||
|
tick={{ fill: "currentColor" }}
|
||||||
angle={-45}
|
angle={-45}
|
||||||
textAnchor="end"
|
textAnchor="end"
|
||||||
height={80}
|
height={80}
|
||||||
interval={tickInterval}
|
interval={tickInterval}
|
||||||
|
tickFormatter={formatXAxisTick}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
|
className="text-foreground"
|
||||||
tick={{ fill: "currentColor" }}
|
tick={{ fill: "currentColor" }}
|
||||||
label={{ value: "%", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
label={{ value: "%", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
||||||
className="text-foreground"
|
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.2)]}
|
||||||
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.15)]}
|
allowDataOverflow={false}
|
||||||
/>
|
/>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
contentStyle={{ backgroundColor: "hsl(var(--background))", border: "1px solid hsl(var(--border))" }}
|
contentStyle={{
|
||||||
labelStyle={{ color: "hsl(var(--foreground))" }}
|
backgroundColor: "hsl(var(--background))",
|
||||||
|
border: "1px solid hsl(var(--border))",
|
||||||
|
borderRadius: "6px",
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<Legend />
|
<Legend />
|
||||||
<Line type="monotone" dataKey="cpu" stroke="#3b82f6" name="CPU %" strokeWidth={2} dot={false} />
|
<Area
|
||||||
</LineChart>
|
type="monotone"
|
||||||
|
dataKey="cpu"
|
||||||
|
stroke="#3b82f6"
|
||||||
|
strokeWidth={2}
|
||||||
|
fill="#3b82f6"
|
||||||
|
fillOpacity={0.3}
|
||||||
|
name="CPU %"
|
||||||
|
/>
|
||||||
|
</AreaChart>
|
||||||
</ResponsiveContainer>
|
</ResponsiveContainer>
|
||||||
)
|
)
|
||||||
|
|
||||||
case "memory":
|
case "memory":
|
||||||
return (
|
return (
|
||||||
<ResponsiveContainer width="100%" height={400}>
|
<ResponsiveContainer width="100%" height={400}>
|
||||||
<LineChart data={data}>
|
<AreaChart data={data}>
|
||||||
<CartesianGrid strokeDasharray="3 3" stroke="hsl(var(--border))" />
|
<CartesianGrid strokeDasharray="3 3" stroke="currentColor" className="text-border" />
|
||||||
<XAxis
|
<XAxis
|
||||||
dataKey="time"
|
dataKey="time"
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
tick={{ fill: "currentColor", fontSize: 12 }}
|
|
||||||
className="text-foreground"
|
className="text-foreground"
|
||||||
|
tick={{ fill: "currentColor" }}
|
||||||
angle={-45}
|
angle={-45}
|
||||||
textAnchor="end"
|
textAnchor="end"
|
||||||
height={80}
|
height={80}
|
||||||
interval={tickInterval}
|
interval={tickInterval}
|
||||||
|
tickFormatter={formatXAxisTick}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
|
className="text-foreground"
|
||||||
tick={{ fill: "currentColor" }}
|
tick={{ fill: "currentColor" }}
|
||||||
label={{ value: "%", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
label={{ value: "%", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
||||||
className="text-foreground"
|
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.2)]}
|
||||||
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.15)]}
|
allowDataOverflow={false}
|
||||||
/>
|
/>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
contentStyle={{ backgroundColor: "hsl(var(--background))", border: "1px solid hsl(var(--border))" }}
|
contentStyle={{
|
||||||
labelStyle={{ color: "hsl(var(--foreground))" }}
|
backgroundColor: "hsl(var(--background))",
|
||||||
|
border: "1px solid hsl(var(--border))",
|
||||||
|
borderRadius: "6px",
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<Legend />
|
<Legend />
|
||||||
<Line type="monotone" dataKey="memory" stroke="#10b981" name="Memory %" strokeWidth={2} dot={false} />
|
<Area
|
||||||
</LineChart>
|
type="monotone"
|
||||||
|
dataKey="memory"
|
||||||
|
stroke="#10b981"
|
||||||
|
fill="#10b981"
|
||||||
|
fillOpacity={0.3}
|
||||||
|
strokeWidth={2}
|
||||||
|
name="Memory %"
|
||||||
|
/>
|
||||||
|
</AreaChart>
|
||||||
</ResponsiveContainer>
|
</ResponsiveContainer>
|
||||||
)
|
)
|
||||||
|
|
||||||
case "network":
|
case "network":
|
||||||
return (
|
return (
|
||||||
<ResponsiveContainer width="100%" height={400}>
|
<ResponsiveContainer width="100%" height={400}>
|
||||||
<LineChart data={data}>
|
<AreaChart data={data}>
|
||||||
<CartesianGrid strokeDasharray="3 3" stroke="hsl(var(--border))" />
|
<CartesianGrid strokeDasharray="3 3" stroke="currentColor" className="text-border" />
|
||||||
<XAxis
|
<XAxis
|
||||||
dataKey="time"
|
dataKey="time"
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
tick={{ fill: "currentColor", fontSize: 12 }}
|
|
||||||
className="text-foreground"
|
className="text-foreground"
|
||||||
|
tick={{ fill: "currentColor" }}
|
||||||
angle={-45}
|
angle={-45}
|
||||||
textAnchor="end"
|
textAnchor="end"
|
||||||
height={80}
|
height={80}
|
||||||
interval={tickInterval}
|
interval={tickInterval}
|
||||||
|
tickFormatter={formatXAxisTick}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
|
className="text-foreground"
|
||||||
tick={{ fill: "currentColor" }}
|
tick={{ fill: "currentColor" }}
|
||||||
label={{ value: "MB", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
label={{ value: "MB", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
||||||
className="text-foreground"
|
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.2)]}
|
||||||
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.15)]}
|
allowDataOverflow={false}
|
||||||
/>
|
/>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
contentStyle={{ backgroundColor: "hsl(var(--background))", border: "1px solid hsl(var(--border))" }}
|
contentStyle={{
|
||||||
labelStyle={{ color: "hsl(var(--foreground))" }}
|
backgroundColor: "hsl(var(--background))",
|
||||||
|
border: "1px solid hsl(var(--border))",
|
||||||
|
borderRadius: "6px",
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<Legend />
|
<Legend />
|
||||||
<Line type="monotone" dataKey="netin" stroke="#10b981" name="Download (MB)" strokeWidth={2} dot={false} />
|
<Area
|
||||||
<Line type="monotone" dataKey="netout" stroke="#3b82f6" name="Upload (MB)" strokeWidth={2} dot={false} />
|
type="monotone"
|
||||||
</LineChart>
|
dataKey="netin"
|
||||||
|
stroke="#10b981"
|
||||||
|
fill="#10b981"
|
||||||
|
fillOpacity={0.3}
|
||||||
|
strokeWidth={2}
|
||||||
|
name="Download (MB)"
|
||||||
|
/>
|
||||||
|
<Area
|
||||||
|
type="monotone"
|
||||||
|
dataKey="netout"
|
||||||
|
stroke="#3b82f6"
|
||||||
|
fill="#3b82f6"
|
||||||
|
fillOpacity={0.3}
|
||||||
|
strokeWidth={2}
|
||||||
|
name="Upload (MB)"
|
||||||
|
/>
|
||||||
|
</AreaChart>
|
||||||
</ResponsiveContainer>
|
</ResponsiveContainer>
|
||||||
)
|
)
|
||||||
|
|
||||||
case "disk":
|
case "disk":
|
||||||
return (
|
return (
|
||||||
<ResponsiveContainer width="100%" height={400}>
|
<ResponsiveContainer width="100%" height={400}>
|
||||||
<LineChart data={data}>
|
<AreaChart data={data}>
|
||||||
<CartesianGrid strokeDasharray="3 3" stroke="hsl(var(--border))" />
|
<CartesianGrid strokeDasharray="3 3" stroke="currentColor" className="text-border" />
|
||||||
<XAxis
|
<XAxis
|
||||||
dataKey="time"
|
dataKey="time"
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
tick={{ fill: "currentColor", fontSize: 12 }}
|
|
||||||
className="text-foreground"
|
className="text-foreground"
|
||||||
|
tick={{ fill: "currentColor" }}
|
||||||
angle={-45}
|
angle={-45}
|
||||||
textAnchor="end"
|
textAnchor="end"
|
||||||
height={80}
|
height={80}
|
||||||
interval={tickInterval}
|
interval={tickInterval}
|
||||||
|
tickFormatter={formatXAxisTick}
|
||||||
/>
|
/>
|
||||||
<YAxis
|
<YAxis
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
|
className="text-foreground"
|
||||||
tick={{ fill: "currentColor" }}
|
tick={{ fill: "currentColor" }}
|
||||||
label={{ value: "MB", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
label={{ value: "MB", angle: -90, position: "insideLeft", fill: "currentColor" }}
|
||||||
className="text-foreground"
|
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.2)]}
|
||||||
domain={[0, (dataMax: number) => Math.ceil(dataMax * 1.15)]}
|
allowDataOverflow={false}
|
||||||
/>
|
/>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
contentStyle={{ backgroundColor: "hsl(var(--background))", border: "1px solid hsl(var(--border))" }}
|
contentStyle={{
|
||||||
labelStyle={{ color: "hsl(var(--foreground))" }}
|
backgroundColor: "hsl(var(--background))",
|
||||||
|
border: "1px solid hsl(var(--border))",
|
||||||
|
borderRadius: "6px",
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<Legend />
|
<Legend />
|
||||||
<Line type="monotone" dataKey="diskread" stroke="#10b981" name="Read (MB)" strokeWidth={2} dot={false} />
|
<Area
|
||||||
<Line
|
type="monotone"
|
||||||
|
dataKey="diskread"
|
||||||
|
stroke="#10b981"
|
||||||
|
fill="#10b981"
|
||||||
|
fillOpacity={0.3}
|
||||||
|
strokeWidth={2}
|
||||||
|
name="Read (MB)"
|
||||||
|
/>
|
||||||
|
<Area
|
||||||
type="monotone"
|
type="monotone"
|
||||||
dataKey="diskwrite"
|
dataKey="diskwrite"
|
||||||
stroke="#3b82f6"
|
stroke="#3b82f6"
|
||||||
name="Write (MB)"
|
fill="#3b82f6"
|
||||||
|
fillOpacity={0.3}
|
||||||
strokeWidth={2}
|
strokeWidth={2}
|
||||||
dot={false}
|
name="Write (MB)"
|
||||||
/>
|
/>
|
||||||
</LineChart>
|
</AreaChart>
|
||||||
</ResponsiveContainer>
|
</ResponsiveContainer>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
default:
|
||||||
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user