Documentation ¶
Index ¶
- Constants
- func BootTime() (uint64, error)
- func BootTimeWithContext(ctx context.Context) (uint64, error)
- func KernelVersion() (version string, err error)
- func KernelVersionWithContext(ctx context.Context) (version string, err error)
- func PlatformInformation() (platform string, family string, version string, err error)
- func PlatformInformationWithContext(ctx context.Context) (platform string, family string, version string, err error)
- func Uptime() (uint64, error)
- func UptimeWithContext(ctx context.Context) (uint64, error)
- func Virtualization() (string, string, error)
- func VirtualizationWithContext(ctx context.Context) (string, string, error)
- type InfoStat
- type LSB
- type TemperatureStat
- type UserStat
- type Warnings
Constants ¶
View Source
const USER_PROCESS = 7
from utmp.h
Variables ¶
This section is empty.
Functions ¶
func KernelVersion ¶
func PlatformInformation ¶
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) KernelArch string `json:"kernelArch"` // native cpu architecture queried at runtime, as returned by `uname -m` or empty string in case of error 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.
type TemperatureStat ¶
type TemperatureStat struct { SensorKey string `json:"sensorKey"` Temperature float64 `json:"sensorTemperature"` }
func SensorsTemperatures ¶
func SensorsTemperatures() ([]TemperatureStat, error)
func SensorsTemperaturesWithContext ¶
func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error)
func (TemperatureStat) String ¶
func (t TemperatureStat) String() string
Click to show internal directories.
Click to hide internal directories.