package models type DiskStats struct { Mounts []MountStats `json:"mounts"` IO []DiskIO `json:"io"` } type MountStats struct { Device string `json:"device"` MountPoint string `json:"mountPoint"` Filesystem string `json:"filesystem"` Total uint64 `json:"total"` Used uint64 `json:"used"` Available uint64 `json:"available"` UsedPercent float64 `json:"usedPercent"` } type DiskIO struct { Device string `json:"device"` ReadBytes uint64 `json:"readBytes"` WriteBytes uint64 `json:"writeBytes"` }