如何在 Solaris 上从 Python 获取驻留集大小?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯...您可以通过调用 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.
也许在
/proc
下使用 Solaris 的psinfo
? (solaris proc(4) 文档)Maybe use Solaris's
psinfo
under/proc
? (solaris proc(4) docs)