host.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package host
  2. import (
  3. "encoding/json"
  4. "github.com/shirou/gopsutil/internal/common"
  5. )
  6. var invoke common.Invoker = common.Invoke{}
  7. // A HostInfoStat describes the host status.
  8. // This is not in the psutil but it useful.
  9. type InfoStat struct {
  10. Hostname string `json:"hostname"`
  11. Uptime uint64 `json:"uptime"`
  12. BootTime uint64 `json:"bootTime"`
  13. Procs uint64 `json:"procs"` // number of processes
  14. OS string `json:"os"` // ex: freebsd, linux
  15. Platform string `json:"platform"` // ex: ubuntu, linuxmint
  16. PlatformFamily string `json:"platformFamily"` // ex: debian, rhel
  17. PlatformVersion string `json:"platformVersion"` // version of the complete OS
  18. KernelVersion string `json:"kernelVersion"` // version of the OS kernel (if available)
  19. VirtualizationSystem string `json:"virtualizationSystem"`
  20. VirtualizationRole string `json:"virtualizationRole"` // guest or host
  21. HostID string `json:"hostid"` // ex: uuid
  22. }
  23. type UserStat struct {
  24. User string `json:"user"`
  25. Terminal string `json:"terminal"`
  26. Host string `json:"host"`
  27. Started int `json:"started"`
  28. }
  29. type TemperatureStat struct {
  30. SensorKey string `json:"sensorKey"`
  31. Temperature float64 `json:"sensorTemperature"`
  32. }
  33. func (h InfoStat) String() string {
  34. s, _ := json.Marshal(h)
  35. return string(s)
  36. }
  37. func (u UserStat) String() string {
  38. s, _ := json.Marshal(u)
  39. return string(s)
  40. }
  41. func (t TemperatureStat) String() string {
  42. s, _ := json.Marshal(t)
  43. return string(s)
  44. }