ZBLOG

golang 当前进程CPU使用率如何获取 系统是windows系统

在 Windows 系统中,可以使用 syscall 包中的 GetProcessTimes() 函数来获取当前进程的 CPU 使用情况。下面是一个获取当前进程 CPU 使用率的示例代码:

package main

import (
    "fmt"
    "syscall"
    "time"
)

// 获取当前进程 CPU 使用率
func getCPUPercent() float64 {
    var lpCreationTime, lpExitTime, lpKernelTime, lpUserTime syscall.Filetime
    err := syscall.GetProcessTimes(syscall.GetCurrentProcess(), &lpCreationTime, &lpExitTime, &lpKernelTime, &lpUserTime)
    if err != nil {
        return 0
    }
    // 获取系统运行时间
    systemTimes := time.Now().UnixNano() / int64(time.Millisecond)
    kernelTime := lpKernelTime.Nanoseconds() / int64(time.Millisecond)
    userTime := lpUserTime.Nanoseconds() / int64(time.Millisecond)
    // 计算 CPU 使用率
    cpuPercent := float64(kernelTime+userTime) / float64(systemTimes) * 100
    return cpuPercent
}

func main() {
    for {
        cpuPercent := getCPUPercent()
        fmt.Printf("CPU usage: %.2f%%\n", cpuPercent)
        time.Sleep(time.Second)
    }
}

这个示例代码使用 syscall 包中的 GetProcessTimes() 函数来获取当前进程的 CPU 使用情况,并计算出 CPU 使用率。其中需要注意的是,该函数返回值单位为 FILETIME,需要转换为 Unix 时间戳或毫秒数进行计算。

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=2485

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?