gpt4 book ai didi

linux - 如何获取 CPU 使用率

转载 作者:IT老高 更新时间:2023-10-28 12:39:21 25 4
gpt4 key购买 nike

我的 Go 程序需要知道当前所有系统和用户进程的 cpu 使用百分比。

我怎样才能得到它?

最佳答案

看看这个包http://github.com/c9s/goprocinfo , goprocinfo 包为你做解析工作。

stat, err := linuxproc.ReadStat("/proc/stat")
if err != nil {
t.Fatal("stat read fail")
}

for _, s := range stat.CPUStats {
// s.User
// s.Nice
// s.System
// s.Idle
// s.IOWait
}

关于linux - 如何获取 CPU 使用率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11356330/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com