|
|
|
@ -5,14 +5,14 @@ import (
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type DiskUsageStat struct {
|
|
|
|
|
Path string `json:"path"`
|
|
|
|
|
Total uint64 `json:"total"`
|
|
|
|
|
Free uint64 `json:"free"`
|
|
|
|
|
Used uint64 `json:"used"`
|
|
|
|
|
UsedPercent float64 `json:"usedPercent"`
|
|
|
|
|
InodesTotal uint64 `json:"inodesTotal"`
|
|
|
|
|
InodesUsed uint64 `json:"inodesUsed"`
|
|
|
|
|
InodesFree uint64 `json:"inodesFree"`
|
|
|
|
|
Path string `json:"path"`
|
|
|
|
|
Total uint64 `json:"total"`
|
|
|
|
|
Free uint64 `json:"free"`
|
|
|
|
|
Used uint64 `json:"used"`
|
|
|
|
|
UsedPercent float64 `json:"usedPercent"`
|
|
|
|
|
InodesTotal uint64 `json:"inodesTotal"`
|
|
|
|
|
InodesUsed uint64 `json:"inodesUsed"`
|
|
|
|
|
InodesFree uint64 `json:"inodesFree"`
|
|
|
|
|
InodesUsedPercent float64 `json:"inodesUsedPercent"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|