mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
98 lines
2.2 KiB
TypeScript
98 lines
2.2 KiB
TypeScript
import {
|
|
AreaChart,
|
|
Area,
|
|
YAxis,
|
|
CartesianGrid,
|
|
Tooltip,
|
|
ResponsiveContainer,
|
|
Legend,
|
|
} from "recharts";
|
|
import type { DockerStatsJSON } from "./show";
|
|
import { format } from "date-fns";
|
|
1;
|
|
interface Props {
|
|
acummulativeData: DockerStatsJSON["network"];
|
|
}
|
|
|
|
export const DockerNetworkChart = ({ acummulativeData }: Props) => {
|
|
const transformedData = acummulativeData.map((item, index) => {
|
|
return {
|
|
time: item.time,
|
|
name: `Point ${index + 1}`,
|
|
inMB: item.value.inputMb.toFixed(2),
|
|
outMB: item.value.outputMb.toFixed(2),
|
|
};
|
|
});
|
|
return (
|
|
<div className="mt-6 w-full h-[10rem]">
|
|
<ResponsiveContainer>
|
|
<AreaChart
|
|
data={transformedData}
|
|
margin={{
|
|
top: 10,
|
|
right: 30,
|
|
left: 0,
|
|
bottom: 0,
|
|
}}
|
|
>
|
|
<defs>
|
|
<linearGradient id="colorUv" x1="0" y1="0" x2="0" y2="1">
|
|
<stop offset="5%" stopColor="#27272A" stopOpacity={0.8} />
|
|
<stop offset="95%" stopColor="white" stopOpacity={0} />
|
|
</linearGradient>
|
|
</defs>
|
|
<YAxis stroke="#A1A1AA" />
|
|
<CartesianGrid strokeDasharray="3 3" stroke="#27272A" />
|
|
{/* @ts-ignore */}
|
|
<Tooltip content={<CustomTooltip />} />
|
|
<Legend />
|
|
<Area
|
|
type="monotone"
|
|
dataKey="inMB"
|
|
stroke="#8884d8"
|
|
fillOpacity={1}
|
|
fill="url(#colorUv)"
|
|
name="In MB"
|
|
/>
|
|
<Area
|
|
type="monotone"
|
|
dataKey="outMB"
|
|
stroke="#82ca9d"
|
|
fillOpacity={1}
|
|
fill="url(#colorUv)"
|
|
name="Out MB"
|
|
/>
|
|
</AreaChart>
|
|
</ResponsiveContainer>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
interface CustomTooltipProps {
|
|
active: boolean;
|
|
payload?: {
|
|
color?: string;
|
|
dataKey?: string;
|
|
value?: number;
|
|
payload: {
|
|
time: string;
|
|
inMB: number;
|
|
outMB: number;
|
|
};
|
|
}[];
|
|
}
|
|
|
|
const CustomTooltip = ({ active, payload }: CustomTooltipProps) => {
|
|
if (active && payload && payload.length && payload[0]) {
|
|
return (
|
|
<div className="custom-tooltip bg-background p-2 shadow-lg rounded-md text-primary border">
|
|
<p>{`Date: ${format(new Date(payload[0].payload.time), "PPpp")}`}</p>
|
|
<p>{`In MB Usage: ${payload[0].payload.inMB} MB`}</p>
|
|
<p>{`Out MB Usage: ${payload[0].payload.outMB} MB`}</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
};
|