Add mountpoint field to mongoose diskSchema

This commit is contained in:
antoplt
2025-11-18 14:25:02 +01:00
parent 135c3ff454
commit 4042d34585

View File

@@ -18,6 +18,7 @@ const memorySchema = mongoose.Schema({
const diskSchema = mongoose.Schema({
device: { type: String, default: "" },
mountpoint: { type: String, default: "" },
read_speed_bytes: { type: Number, default: 0 },
write_speed_bytes: { type: Number, default: 0 },
total_bytes: { type: Number, default: 0 },