python获取CPU,内存,磁盘使用率
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python获取CPU,内存,磁盘使用率相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python # coding:utf-8 import psutil total_cpu=psutil.cpu_times().user+psutil.cpu_times().idle user_cpu=psutil.cpu_times().user cpu_syl=user_cpu/total_cpu*100 mem = psutil.virtual_memory() #使用psutil.virtual_memory方法获取内存完整信息 mem_total=mem.total mem_used=mem.used mem_syl=mem_used/float(mem_total)*100 dis_syl= psutil.disk_usage(‘/‘).used/float (psutil.disk_usage(‘/‘).total)*100 print "CPU使用率",cpu_syl,"内存使用率",mem_syl,"磁盘使用率",dis_syl
以上是关于python获取CPU,内存,磁盘使用率的主要内容,如果未能解决你的问题,请参考以下文章
pythton3.7脚本---监控系统的CPU内存磁盘等信息
Linux服务器CPU内存磁盘空间负载情况查看python脚本