Golang仿ps获取Linux进程信息

文章目录

    • 原理
    • Go代码
    • 测试验证

原理

遍历读取/proc/获取所有进程ID
cat /proc/5181/stat中前四列分别为进程PID进程名进程状态父进程PID

Golang仿ps获取Linux进程信息_第1张图片

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进程信息_第2张图片

你可能感兴趣的:(Golang,Linux维护,linux,golang,运维)