如何在 Solaris 上从 Python 获取驻留集大小?

发布于 2024-08-19 18:11:32 字数 161 浏览 10 评论 0原文

在 Solaris 和 Linux 系统上,从 Python 调用 resource.getrusage() 会返回 0 值作为驻留集大小。在 Linux 上,您可以从 /proc//status 中提取 RSS。有没有人有在 Solaris 上提取 RSS 的好方法,无论是否类似于 Linux 解决方法?

Calling resource.getrusage() from Python returns a 0 value for resident set size on Solaris and Linux systems. On Linux you can pull the RSS From /proc//status instead. Does anybody have a good way to pull RSS on Solaris, either similar or not to the Linux workaround?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋叶绚丽 2024-08-26 18:11:32

嗯...您可以通过调用 pmap -x 从 pmap 应用程序中提取它。但我更多地寻找一种从我的应用程序直接访问 /proc 中的信息的方法。唯一的方法是访问 /proc//xmap 文件。不幸的是,数据存储为 prxmap 结构数组......因此要么使用 Python C 模块,要么使用 ctypes 模块。当我写完其中一篇后,我会发布更新。

Well...you can pull it from the pmap application by calling pmap -x. But I was looking more for a way to access the info directly in /proc from my app. The only way to do it is to access the /proc/<pid>/xmap file. Unfortunately, the data is stored as an array of prxmap structs...so either a Python C-module is in order or using the ctypes module. I'll post an update when I get one of those written.

计㈡愣 2024-08-26 18:11:32

也许在 /proc 下使用 Solaris 的 psinfo ? (solaris proc(4) 文档

Maybe use Solaris's psinfo under /proc? (solaris proc(4) docs)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文