rmmagent/agent/disk/structs.go
2022-06-20 16:51:00 -07:00

10 lines
No EOL
222 B
Go

package disk
type Disk struct {
Device string `json:"device"`
Fstype string `json:"fstype"`
Total string `json:"total"`
Used string `json:"used"`
Free string `json:"free"`
Percent int `json:"percent"`
}