2025-11-23 19:24:48 +01:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { ProcessInfo, ProcessState } from '@/lib/supervisor/types';
|
|
|
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
|
|
|
|
import { PieChart, Pie, Cell, ResponsiveContainer, Legend, Tooltip } from 'recharts';
|
2025-11-23 21:52:35 +01:00
|
|
|
import { chartColors } from '@/lib/utils/chartColors';
|
2025-11-23 19:24:48 +01:00
|
|
|
|
|
|
|
|
interface ProcessStateChartProps {
|
|
|
|
|
processes: ProcessInfo[];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function ProcessStateChart({ processes }: ProcessStateChartProps) {
|
|
|
|
|
const stateCounts = processes.reduce(
|
|
|
|
|
(acc, proc) => {
|
|
|
|
|
if (proc.state === ProcessState.RUNNING) acc.running++;
|
|
|
|
|
else if (proc.state === ProcessState.STOPPED || proc.state === ProcessState.EXITED) acc.stopped++;
|
|
|
|
|
else if (proc.state === ProcessState.FATAL) acc.fatal++;
|
|
|
|
|
else if (proc.state === ProcessState.STARTING) acc.starting++;
|
|
|
|
|
else if (proc.state === ProcessState.STOPPING) acc.stopping++;
|
|
|
|
|
else acc.other++;
|
|
|
|
|
return acc;
|
|
|
|
|
},
|
|
|
|
|
{ running: 0, stopped: 0, fatal: 0, starting: 0, stopping: 0, other: 0 }
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const data = [
|
2025-11-23 21:52:35 +01:00
|
|
|
{ name: 'Running', value: stateCounts.running, color: chartColors.running },
|
|
|
|
|
{ name: 'Stopped', value: stateCounts.stopped, color: chartColors.stopped },
|
|
|
|
|
{ name: 'Fatal', value: stateCounts.fatal, color: chartColors.fatal },
|
|
|
|
|
{ name: 'Starting', value: stateCounts.starting, color: chartColors.starting },
|
|
|
|
|
{ name: 'Stopping', value: stateCounts.stopping, color: chartColors.stopping },
|
|
|
|
|
{ name: 'Other', value: stateCounts.other, color: chartColors.muted },
|
2025-11-23 19:24:48 +01:00
|
|
|
].filter((item) => item.value > 0);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<CardTitle>Process State Distribution</CardTitle>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent>
|
|
|
|
|
<ResponsiveContainer width="100%" height={300}>
|
|
|
|
|
<PieChart>
|
|
|
|
|
<Pie
|
|
|
|
|
data={data}
|
|
|
|
|
cx="50%"
|
|
|
|
|
cy="50%"
|
|
|
|
|
labelLine={false}
|
|
|
|
|
label={({ name, percent }) => `${name}: ${(percent * 100).toFixed(0)}%`}
|
|
|
|
|
outerRadius={80}
|
|
|
|
|
fill="#8884d8"
|
|
|
|
|
dataKey="value"
|
|
|
|
|
>
|
|
|
|
|
{data.map((entry, index) => (
|
|
|
|
|
<Cell key={`cell-${index}`} fill={entry.color} />
|
|
|
|
|
))}
|
|
|
|
|
</Pie>
|
2025-11-23 21:52:35 +01:00
|
|
|
<Tooltip
|
|
|
|
|
contentStyle={{
|
|
|
|
|
backgroundColor: 'rgba(0, 0, 0, 0.9)',
|
|
|
|
|
border: 'none',
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
}}
|
|
|
|
|
itemStyle={{ color: '#ffffff' }}
|
|
|
|
|
/>
|
2025-11-23 19:24:48 +01:00
|
|
|
<Legend />
|
|
|
|
|
</PieChart>
|
|
|
|
|
</ResponsiveContainer>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
);
|
|
|
|
|
}
|