2014-12-30 22:09:05 +09:00
|
|
|
package host
|
2014-04-18 16:34:47 +09:00
|
|
|
|
2014-05-01 18:43:11 +09:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
)
|
|
|
|
|
2014-04-22 10:31:14 +09:00
|
|
|
// A HostInfoStat describes the host status.
|
|
|
|
// This is not in the psutil but it useful.
|
2016-03-22 23:09:12 +09:00
|
|
|
type InfoStat struct {
|
2014-05-20 19:36:19 +09:00
|
|
|
Hostname string `json:"hostname"`
|
|
|
|
Uptime uint64 `json:"uptime"`
|
2015-11-23 13:14:56 -07:00
|
|
|
BootTime uint64 `json:"boot_time"`
|
2014-12-27 23:42:00 +09:00
|
|
|
Procs uint64 `json:"procs"` // number of processes
|
|
|
|
OS string `json:"os"` // ex: freebsd, linux
|
|
|
|
Platform string `json:"platform"` // ex: ubuntu, linuxmint
|
|
|
|
PlatformFamily string `json:"platform_family"` // ex: debian, rhel
|
|
|
|
PlatformVersion string `json:"platform_version"`
|
|
|
|
VirtualizationSystem string `json:"virtualization_system"`
|
|
|
|
VirtualizationRole string `json:"virtualization_role"` // guest or host
|
2014-05-20 19:36:19 +09:00
|
|
|
|
2014-04-18 16:34:47 +09:00
|
|
|
}
|
2014-04-22 17:38:47 +09:00
|
|
|
|
|
|
|
type UserStat struct {
|
|
|
|
User string `json:"user"`
|
|
|
|
Terminal string `json:"terminal"`
|
|
|
|
Host string `json:"host"`
|
|
|
|
Started int `json:"started"`
|
|
|
|
}
|
2014-05-01 18:43:11 +09:00
|
|
|
|
2016-03-22 23:09:12 +09:00
|
|
|
func (h InfoStat) String() string {
|
2014-05-01 18:43:11 +09:00
|
|
|
s, _ := json.Marshal(h)
|
|
|
|
return string(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u UserStat) String() string {
|
|
|
|
s, _ := json.Marshal(u)
|
|
|
|
return string(s)
|
|
|
|
}
|