mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
10 lines
236 B
Go
10 lines
236 B
Go
package gopsutil
|
|
|
|
// A HostInfoStat describes the host status.
|
|
// This is not in the psutil but it useful.
|
|
type HostInfoStat struct {
|
|
Hostname string `json:"hostname"`
|
|
Uptime int64 `json:"uptime"`
|
|
Procs uint64 `json:"procs"`
|
|
}
|