package host

import "github.com/shirou/gopsutil/host"

Index

Constants

const USER_PROCESS = 7

from utmp.h

Functions

func BootTime

func BootTime() (uint64, error)

BootTime returns the system boot time expressed in seconds since the epoch.

func PlatformInformation

func PlatformInformation() (platform string, family string, version string, err error)

func Uptime

func Uptime() (uint64, error)

func Virtualization

func Virtualization() (string, string, error)

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"`
	VirtualizationSystem string `json:"virtualizationSystem"`
	VirtualizationRole   string `json:"virtualizationRole"` // guest or host

}

A HostInfoStat describes the host status. This is not in the psutil but it useful.

func Info

func Info() (*InfoStat, error)

func (InfoStat) String

func (h InfoStat) String() string

type LSB

type LSB struct {
	ID          string
	Release     string
	Codename    string
	Description string
}

type UserStat

type UserStat struct {
	User     string `json:"user"`
	Terminal string `json:"terminal"`
	Host     string `json:"host"`
	Started  int    `json:"started"`
}

func Users

func Users() ([]UserStat, error)

func (UserStat) String

func (u UserStat) String() string

type UtTv

type UtTv struct {
	TvSec  int32
	TvUsec int32
}

Source Files

host.go host_linux.go host_linux_amd64.go

Version
v2.0.0+incompatible
Published
Apr 7, 2016
Platform
linux/amd64
Imports
14 packages
Last checked
1 day ago

Tools for package owners.