在 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 时间戳或毫秒数进行计算。