mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-22 09:27:46 +02:00
139 lines
4.4 KiB
Go
139 lines
4.4 KiB
Go
import { t } from "@lingui/core/macro"
|
|
import AreaChartDefault from "@/components/charts/area-chart"
|
|
import { decimalString, formatBytes, toFixedFloat } from "@/lib/utils"
|
|
import type { SystemStatsRecord } from "@/types"
|
|
import { ChartCard } from "../chart-card"
|
|
import { RawCapacityLabel } from "../raw-capacity-label"
|
|
import { Unit } from "@/lib/enums"
|
|
import { useStore } from "@nanostores/react"
|
|
import { $userSettings } from "@/lib/stores"
|
|
import type { SystemData } from "../use-system-data"
|
|
|
|
// Accessors for ZFS metrics
|
|
const poolUsage =
|
|
(name: string, raw: boolean) =>
|
|
({ stats }: SystemStatsRecord) => {
|
|
const pool = stats?.z?.[name]
|
|
return pool && !!pool.raw === raw ? pool.du : null
|
|
}
|
|
const poolRead =
|
|
(name: string) =>
|
|
({ stats }: SystemStatsRecord) =>
|
|
stats?.z?.[name]?.rb ?? 0
|
|
const poolWrite =
|
|
(name: string) =>
|
|
({ stats }: SystemStatsRecord) =>
|
|
stats?.z?.[name]?.wb ?? 0
|
|
|
|
export function ZfsPoolUsageChart({ systemData, poolName }: { systemData: SystemData; poolName: string }) {
|
|
const { chartData, grid, dataEmpty } = systemData
|
|
const latest = chartData.systemStats.at(-1)?.stats
|
|
const pool = latest?.z?.[poolName]
|
|
if (!pool || pool.hu) {
|
|
return null
|
|
}
|
|
const displayName = pool.n || poolName
|
|
let poolTotal = pool.d
|
|
// round to nearest GB
|
|
if (poolTotal >= 100) {
|
|
poolTotal = Math.round(poolTotal)
|
|
}
|
|
|
|
return (
|
|
<ChartCard
|
|
empty={dataEmpty}
|
|
grid={grid}
|
|
title={`${displayName} ${t`Usage`}`}
|
|
description={pool.raw ? <RawCapacityLabel label={t`Raw usage of storage pool ${displayName}`} /> : t`Usage of storage pool ${displayName}`}
|
|
>
|
|
<AreaChartDefault
|
|
chartData={chartData}
|
|
domain={[0, poolTotal]}
|
|
showTotal={true}
|
|
tickFormatter={(val) => {
|
|
const { value, unit } = formatBytes(val * 1024, false, Unit.Bytes, true)
|
|
return `${toFixedFloat(value, value >= 10 ? 0 : 1)} ${unit}`
|
|
}}
|
|
contentFormatter={({ value }) => {
|
|
const { value: convertedValue, unit } = formatBytes(value * 1024, false, Unit.Bytes, true)
|
|
return `${decimalString(convertedValue, convertedValue >= 100 ? 1 : 2)} ${unit}`
|
|
}}
|
|
dataPoints={[
|
|
{
|
|
label: t`Pool Usage`,
|
|
dataKey: poolUsage(poolName, !!pool.raw),
|
|
color: 4,
|
|
opacity: 0.4,
|
|
},
|
|
]}
|
|
/>
|
|
</ChartCard>
|
|
)
|
|
}
|
|
|
|
export function ZfsPoolIOChart({ systemData, poolName }: { systemData: SystemData; poolName: string }) {
|
|
const { chartData, grid, dataEmpty } = systemData
|
|
const userSettings = useStore($userSettings)
|
|
if (!chartData.systemStats?.length || chartData.systemStats.at(-1)?.stats.z?.[poolName]?.hi) {
|
|
return null
|
|
}
|
|
const displayName = chartData.systemStats.at(-1)?.stats.z?.[poolName]?.n || poolName
|
|
return (
|
|
<ChartCard
|
|
empty={dataEmpty}
|
|
grid={grid}
|
|
title={`${displayName} I/O`}
|
|
description={t`Throughput of storage pool ${displayName}`}
|
|
>
|
|
<AreaChartDefault
|
|
chartData={chartData}
|
|
showTotal={true}
|
|
dataPoints={[
|
|
{
|
|
label: t({ message: "Write", comment: "Disk write" }),
|
|
dataKey: poolWrite(poolName),
|
|
color: 3,
|
|
opacity: 0.3,
|
|
},
|
|
{
|
|
label: t({ message: "Read", comment: "Disk read" }),
|
|
dataKey: poolRead(poolName),
|
|
color: 1,
|
|
opacity: 0.3,
|
|
},
|
|
]}
|
|
tickFormatter={(val) => {
|
|
const { value, unit } = formatBytes(val, true, userSettings.unitDisk, false)
|
|
return `${toFixedFloat(value, value >= 10 ? 0 : 1)} ${unit}`
|
|
}}
|
|
contentFormatter={({ value }) => {
|
|
const { value: convertedValue, unit } = formatBytes(value, true, userSettings.unitDisk, false)
|
|
return `${decimalString(convertedValue, convertedValue >= 100 ? 1 : 2)} ${unit}`
|
|
}}
|
|
/>
|
|
</ChartCard>
|
|
)
|
|
}
|
|
|
|
/** ZFS section: one stacked usage card per pool plus per-pool I/O cards. */
|
|
export function ZfsCharts({ systemData }: { systemData: SystemData }) {
|
|
const latest = systemData.chartData.systemStats?.at(-1)?.stats
|
|
const pools = latest?.z ?? {}
|
|
const visiblePools = Object.keys(pools)
|
|
.filter((name) => !pools[name].hu || !pools[name].hi)
|
|
.sort((a, b) => (pools[a].n || a).localeCompare(pools[b].n || b, undefined, { numeric: true }) || a.localeCompare(b))
|
|
if (visiblePools.length === 0) {
|
|
return null
|
|
}
|
|
return (
|
|
<div className="grid xl:grid-cols-2 gap-4">
|
|
{visiblePools.map((poolName) => (
|
|
<div key={poolName} className="contents">
|
|
<ZfsPoolUsageChart systemData={systemData} poolName={poolName} />
|
|
<ZfsPoolIOChart systemData={systemData} poolName={poolName} />
|
|
</div>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|