cpu

package
v1.1.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 1, 2024 License: Apache-2.0 Imports: 11 Imported by: 0

README

cpu

import "github.com/ccheers/xpkg/stat/sys/cpu"

Index

Variables

ErrNoCFSLimit is no quota limit

var ErrNoCFSLimit = errors.Errorf("no quota limit")

func ParseUintList

func ParseUintList(val string) (map[int]bool, error)

ParseUintList parses and validates the specified string as the value found in some cgroup file (e.g. cpuset.cpus, cpuset.mems), which could be one of the formats below. Note that duplicates are actually allowed in the input string. It returns a map[int]bool with available elements from val set to true. Supported formats: 7 1-6 0,3-4,7,8-10 0-0,0,1-7 03,1-3 <- this is gonna get parsed as [1,2,3] 3,2,1 0-2,3,1

func ReadStat

func ReadStat(stat *Stat)

ReadStat read cpu stat.

type CPU

CPU is cpu stat usage.

type CPU interface {
    Usage() (u uint64, e error)
    Info() Info
}

type Info

Info cpu info.

type Info struct {
    Frequency uint64
    Quota     float64
}
func GetInfo
func GetInfo() Info

GetInfo get cpu info.

type Stat

Stat cpu stat.

type Stat struct {
    Usage uint64 // cpu use ratio.
}

Generated by gomarkdoc

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrNoCFSLimit = errors.Errorf("no quota limit")

ErrNoCFSLimit is no quota limit

Functions

func ParseUintList

func ParseUintList(val string) (map[int]bool, error)

ParseUintList parses and validates the specified string as the value found in some cgroup file (e.g. cpuset.cpus, cpuset.mems), which could be one of the formats below. Note that duplicates are actually allowed in the input string. It returns a map[int]bool with available elements from val set to true. Supported formats: 7 1-6 0,3-4,7,8-10 0-0,0,1-7 03,1-3 <- this is gonna get parsed as [1,2,3] 3,2,1 0-2,3,1

func ReadStat

func ReadStat(stat *Stat)

ReadStat read cpu stat.

Types

type CPU

type CPU interface {
	Usage() (u uint64, e error)
	Info() Info
}

CPU is cpu stat usage.

type Info

type Info struct {
	Frequency uint64
	Quota     float64
}

Info cpu info.

func GetInfo

func GetInfo() Info

GetInfo get cpu info.

type Stat

type Stat struct {
	Usage uint64 // cpu use ratio.
}

Stat cpu stat.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL