package host
import "github.com/shirou/gopsutil/host"
Index ¶
- Constants
- func BootTime() (uint64, error)
- func KernelVersion() (string, error)
- func PlatformInformation() (string, string, string, error)
- func Uptime() (uint64, error)
- func Virtualization() (string, string, error)
- type InfoStat
- type TemperatureStat
- type Timeval
- type UserStat
- type Utmpx
Constants ¶
const USER_PROCESS = 7
from utmpx.h
Functions ¶
func BootTime ¶
func KernelVersion ¶
func PlatformInformation ¶
func Uptime ¶
func Virtualization ¶
Types ¶
type InfoStat ¶
type InfoStat struct { Hostname string `json:"hostname"` Uptime uint64 `json:"uptime"` BootTime uint64 `json:"bootTime"` Procs uint64 `json:"procs"` // number of processes OS string `json:"os"` // ex: freebsd, linux Platform string `json:"platform"` // ex: ubuntu, linuxmint PlatformFamily string `json:"platformFamily"` // ex: debian, rhel PlatformVersion string `json:"platformVersion"` // version of the complete OS KernelVersion string `json:"kernelVersion"` // version of the OS kernel (if available) VirtualizationSystem string `json:"virtualizationSystem"` VirtualizationRole string `json:"virtualizationRole"` // guest or host HostID string `json:"hostid"` // ex: uuid }
A HostInfoStat describes the host status. This is not in the psutil but it useful.
func Info ¶
func (InfoStat) String ¶
type TemperatureStat ¶
type TemperatureStat struct { SensorKey string `json:"sensorKey"` Temperature float64 `json:"sensorTemperature"` }
func SensorsTemperatures ¶
func SensorsTemperatures() ([]TemperatureStat, error)
func (TemperatureStat) String ¶
func (t TemperatureStat) String() string
type Timeval ¶
type Timeval struct { Sec int32 }
type UserStat ¶
type UserStat struct { User string `json:"user"` Terminal string `json:"terminal"` Host string `json:"host"` Started int `json:"started"` }
func Users ¶
func (UserStat) String ¶
type Utmpx ¶
type Utmpx struct { User [256]int8 ID [4]int8 Line [32]int8 Pid int32 Type int16 Pad_cgo_0 [6]byte Tv Timeval Host [256]int8 Pad [16]uint32 }
Source Files ¶
host.go host_darwin.go host_darwin_amd64.go host_darwin_cgo.go
- Version
- v2.17.12+incompatible
- Published
- Dec 20, 2017
- Platform
- darwin/amd64
- Imports
- 15 packages
- Last checked
- 19 hours ago –
Tools for package owners.