linux下通过go语言获得系统进程cpu使用情况的方法
程序员文章站
2022-05-26 09:42:24
本文实例讲述了linux下通过go语言获得系统进程cpu使用情况的方法。分享给大家供大家参考。具体分析如下:
这段代码通过linux的系统命令 ps来分析cpu的使用情况...
本文实例讲述了linux下通过go语言获得系统进程cpu使用情况的方法。分享给大家供大家参考。具体分析如下:
这段代码通过linux的系统命令 ps来分析cpu的使用情况,代码如下:
复制代码 代码如下:
package main
import (
"bytes"
"log"
"os/exec"
"strconv"
"strings"
)
type process struct {
pid int
cpu float64
}
func main() {
cmd := exec.command("ps", "aux")
var out bytes.buffer
cmd.stdout = &out
err := cmd.run()
if err != nil {
log.fatal(err)
}
processes := make([]*process, 0)
for {
line, err := out.readstring('\n')
if err!=nil {
break;
}
tokens := strings.split(line, " ")
ft := make([]string, 0)
for _, t := range(tokens) {
if t!="" && t!="\t" {
ft = append(ft, t)
}
}
log.println(len(ft), ft)
pid, err := strconv.atoi(ft[1])
if err!=nil {
continue
}
cpu, err := strconv.parsefloat(ft[2], 64)
if err!=nil {
log.fatal(err)
}
processes = append(processes, &process{pid, cpu})
}
for _, p := range(processes) {
log.println("process ", p.pid, " takes ", p.cpu, " % of the cpu")
}
}
import (
"bytes"
"log"
"os/exec"
"strconv"
"strings"
)
type process struct {
pid int
cpu float64
}
func main() {
cmd := exec.command("ps", "aux")
var out bytes.buffer
cmd.stdout = &out
err := cmd.run()
if err != nil {
log.fatal(err)
}
processes := make([]*process, 0)
for {
line, err := out.readstring('\n')
if err!=nil {
break;
}
tokens := strings.split(line, " ")
ft := make([]string, 0)
for _, t := range(tokens) {
if t!="" && t!="\t" {
ft = append(ft, t)
}
}
log.println(len(ft), ft)
pid, err := strconv.atoi(ft[1])
if err!=nil {
continue
}
cpu, err := strconv.parsefloat(ft[2], 64)
if err!=nil {
log.fatal(err)
}
processes = append(processes, &process{pid, cpu})
}
for _, p := range(processes) {
log.println("process ", p.pid, " takes ", p.cpu, " % of the cpu")
}
}
希望本文所述对大家的go语言程序设计有所帮助。
上一篇: mac os10.12安装mysql5.7.18教程
下一篇: Mysql的增删改查语句简单实现