在共享虚拟主机上使用 python psutil
我想使用 python psutil 创建自己的面板,我将用它来管理我的应用程序 op webfaction。如果我使用类似的功能
psutil.network_io_counters()
,或者
psutil.disk_usage()
这将特定于整个 webfaction 服务器还是仅特定于我的应用程序?
I want to use python psutil to create my own panel that I will use to administer my app op webfaction. If I use functions like
psutil.network_io_counters()
or
psutil.disk_usage()
will this be specific to the the whole of webfaction servers or will it be specific to my app only?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
psutil
将仅返回正在运行的系统的数据。psutil
will return data only for the system in which is running on.