|
|
@ -59,12 +59,12 @@ type DefaultRep struct { |
|
|
|
|
|
|
|
|
|
|
|
// ServerListRep collection of server replies
|
|
|
|
// ServerListRep collection of server replies
|
|
|
|
type ServerListRep struct { |
|
|
|
type ServerListRep struct { |
|
|
|
List []ServerRep |
|
|
|
List []ServerRep `json:"list"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// DiskStatsRep collection of disks
|
|
|
|
// DiskStatsRep collection of disks
|
|
|
|
type DiskStatsRep struct { |
|
|
|
type DiskStatsRep struct { |
|
|
|
Disks []string |
|
|
|
Disks []string `json:"disks"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// MemStatsRep memory statistics of a server
|
|
|
|
// MemStatsRep memory statistics of a server
|
|
|
@ -83,7 +83,7 @@ type Network struct { |
|
|
|
|
|
|
|
|
|
|
|
// NetStatsRep network statistics of a server
|
|
|
|
// NetStatsRep network statistics of a server
|
|
|
|
type NetStatsRep struct { |
|
|
|
type NetStatsRep struct { |
|
|
|
Interfaces []Network |
|
|
|
Interfaces []Network `json:"interfaces"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// SysInfoRep system information of a server
|
|
|
|
// SysInfoRep system information of a server
|
|
|
|