big refactor and testing
This commit is contained in:
parent
a2ed11b2fb
commit
d6b1b90034
26 changed files with 908 additions and 70 deletions
10
agent/disk/structs.go
Normal file
10
agent/disk/structs.go
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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"`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue