gopkg/system/define.go

37 lines
926 B
Go
Raw Normal View History

2021-10-12 18:38:14 +08:00
// Package system...
//
// Description : system...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2021-10-12 5:48 下午
package system
2021-10-12 18:49:27 +08:00
import (
"github.com/shirou/gopsutil/cpu"
"github.com/shirou/gopsutil/load"
)
2021-10-12 18:38:14 +08:00
// CPUDetail CPU详情
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 6:20 下午 2021/10/12
type CPUDetail struct {
BaseInfo cpu.InfoStat `json:"base_info"` // 基础信息
Time []cpu.TimesStat `json:"time"` // cpu时间
Percent []float64 `json:"percent"` // 使用率
CoreCntInfo CPUCoreCnt `json:"cnt_info"` // 核心数信息
2021-10-12 18:49:27 +08:00
Load *load.AvgStat `json:"load"` // 负载信息
2021-10-12 18:38:14 +08:00
}
// CPUCoreCnt cpu核数信息
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 6:22 下午 2021/10/12
type CPUCoreCnt struct {
Logical int `json:"logical"` // 逻辑核数
Physical int `json:"physical"` // 物理核数
}