如何获取驻留集大小 (RSS)

我需要知道 Linux 中 Go 进程的物理内存消耗。我需要的是Resident Set Size (RSS)

runtime.ReadMemStats不合适,因为无法获取驻留虚拟内存部分的大小。

syscall.Getrusage不合适,因为它仅返回Maxrss进程生命周期内的最大 RSS。

如何在 Go 中查询 RSS?


PIPIONE
浏览 112回答 1
1回答

开心每一天1111

您可以解析/proc/self/statm 文件。它仅包含整数,因此很容易解析。第二个字段是以页为单位测量的 RSS。func getRss() (int64, error) {&nbsp; &nbsp; buf, err := ioutil.ReadFile("/proc/self/statm")&nbsp; &nbsp; if err != nil {&nbsp; &nbsp; &nbsp; &nbsp; return 0, err&nbsp; &nbsp; }&nbsp; &nbsp; fields := strings.Split(string(buf), " ")&nbsp; &nbsp; if len(fields) < 2 {&nbsp; &nbsp; &nbsp; &nbsp; return 0, errors.New("Cannot parse statm")&nbsp; &nbsp; }&nbsp; &nbsp; rss, err := strconv.ParseInt(fields[1], 10, 64)&nbsp; &nbsp; if err != nil {&nbsp; &nbsp; &nbsp; &nbsp; return 0, err&nbsp; &nbsp; }&nbsp; &nbsp; return rss * int64(os.Getpagesize()), err}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go