Golang

关注公众号 jb51net

关闭
首页 > 脚本专栏 > Golang > Go获取Linux进程信息

Golang仿ps实现获取Linux进程信息

作者:LeoForBest

这篇文章主要为大家学习介绍了Golang如何仿ps实现获取Linux进程信息,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起了解一下

原理

遍历读取/proc/获取所有进程ID

cat /proc/5181/stat中前四列分别为进程PID进程名进程状态父进程PID

Go代码

1.获取/proc/下面所有文件名+文件夹名为数字的名字

2.读取/proc/xxx/stat获取进程信息输出

package main
import (
	"fmt"
	"io/ioutil"
	"log"
	"regexp"
	"sort"
	"strconv"
)
func main() {
	var process []int
	var validId = regexp.MustCompile("^[0-9]+$")
	infoList, err := ioutil.ReadDir("/proc")
	if err != nil {
		log.Println(infoList)
	}
	for _, info := range infoList {
		if info.IsDir() && validId.MatchString(info.Name()) {
			p, _ := strconv.Atoi(info.Name())
			process = append(process, p)
		}
	}
	sort.Ints(process)
	statRe := regexp.MustCompile(`([0-9]+) \((.+?)\) [a-zA-Z]+ ([0-9]+)`)
	fmt.Printf("%6s\t%6s\t%s\n", "PID", "PPID", "NAME")
	for _, p := range process {
		b, err := ioutil.ReadFile(fmt.Sprintf("/proc/%d/stat", p))
		if err != nil {
			continue
		}
		matches := statRe.FindStringSubmatch(string(b))
		fmt.Printf("%6s\t%6s\t%s\n", matches[1], matches[3], matches[2])
	}
}

测试验证

运行程序查看

到此这篇关于Golang仿ps实现获取Linux进程信息的文章就介绍到这了,更多相关Go获取Linux进程信息内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文