statKit

package
v3.0.925 Latest Latest
Warning

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

Go to latest
Published: Oct 8, 2024 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func MustSetup

func MustSetup(logPath string)

func PrintStats

func PrintStats(logger *zap.SugaredLogger)

func Setup

func Setup(logPath string) error

Types

type MachineMemoryStats added in v3.0.912

type MachineMemoryStats struct {
	Error       string  `json:"error,omitempty"`
	Total       string  `json:"total,omitempty"`
	Available   string  `json:"available,omitempty"`
	Used        string  `json:"used,omitempty"`
	UsedPercent float64 `json:"usedPercent,omitempty"`
	Free        string  `json:"free,omitempty"`
}

type MachineStats

type MachineStats struct {
	CpuUsagePercent      float64 `json:"cpuUsagePercent"`
	CpuUsagePercentError error   `json:"cpuUsagePercentError,omitempty"`

	DiskPath              string  `json:"diskPath,omitempty"`
	DiskUsagePercent      float64 `json:"diskUsagePercent,omitempty"`
	DiskUsagePercentError error   `json:"diskUsagePercentError,omitempty"`

	// ProcessCount 进程数
	ProcessCount      int   `json:"processCount,omitempty"`
	ProcessCountError error `json:"processCountError,omitempty"`

	// ProcessThreadCount 进程数(包括线程数)
	ProcessThreadCount      int   `json:"processThreadCount,omitempty"`
	ProcessThreadCountError error `json:"processThreadCountError,omitempty"`

	MaxProcessThreadCountByUser      int    `json:"maxProcessThreadCountByUser,omitempty"`
	MaxProcessThreadCountByUserError string `json:"maxProcessThreadCountByUserError,omitempty"`
	PidMax                           int    `json:"pidMax,omitempty"`
	PidMaxError                      string `json:"pidMaxError,omitempty"`
	ThreadsMax                       int    `json:"threadsMax,omitempty"`
	ThreadsMaxError                  string `json:"threadsMaxError,omitempty"`
	MaxMapCount                      int    `json:"maxMapCount,omitempty"`
	MaxMapCountError                 string `json:"maxMapCountError,omitempty"`

	Memory *MachineMemoryStats `json:"memory"`
}

type ProgramMemoryStats added in v3.0.912

type ProgramMemoryStats struct {
	// Alloc
	/*
		当前堆上分配的对象的字节数。这代表了程序正在使用的内存量。它会随着程序的运行动态变化,当分配新对象时增加,当垃圾回收回收对象时可能减少。
	*/
	Alloc string `json:"alloc"`

	// TotalAlloc
	/*
		从程序开始到现在累计分配的堆内存字节数。即使某些内存已经被垃圾回收释放,这个值也不会减少。它反映了程序运行过程中的总内存分配情况,可以用来观察程序的内存增长趋势。
	*/
	TotalAlloc string `json:"totalAlloc"`

	// Sys
	/*
		从操作系统获取的内存字节数。这包括所有已分配的堆内存、栈内存以及其他由 Go 运行时系统管理的内存。这个值通常大于Alloc,因为它还包括未被使用但已经从操作系统获取的内存。
	*/
	Sys string `json:"sys"`

	NumGC    uint32 `json:"numGC"`
	EnableGC bool   `json:"enableGC"`
}

type ProgramStats

type ProgramStats struct {
	PID            int `json:"pid"`
	GoroutineCount int `json:"goroutineCount"`

	CpuUsagePercent      float64 `json:"cpuUsagePercent"`
	CpuUsagePercentError error   `json:"cpuUsagePercentError,omitempty"`

	Memory *ProgramMemoryStats `json:"memory"`
}

type Stats

type Stats struct {
	Program *ProgramStats `json:"program"`

	Machine *MachineStats `json:"machine"`
}

func GetStats

func GetStats() *Stats

GetStats

PS: 由于获取CPU使用率耗时较长,本函数内部使用 sync.WaitGroup.

Jump to

Keyboard shortcuts

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