feat: volume stats & charts

This commit is contained in:
Nicolas Meienberger
2025-09-25 21:16:55 +02:00
parent c261590ea3
commit 6b386d28d6
12 changed files with 626 additions and 30 deletions

View File

@@ -103,9 +103,9 @@ export const deleteVolumeDto = describeRoute({
const getVolumeResponse = type({
volume: volumeSchema,
statfs: type({
total: "number",
used: "number",
free: "number",
total: "number = 0",
used: "number = 0",
free: "number = 0",
}),
});