用Python获取Linux资源信息的三种方法

方法一:psutil模块

#!usr/bin/env python
# -*- coding: utf-8 -*-

import socket
import psutil
class NodeResource(object):
    def get_host_info(self):
        host_name = socket.gethostname()
        return {‘host_name‘:host_name}

    def get_cpu_state(self):
        cpu_count = psutil.cpu_count(logical=False)
        cpu_percent =(str)(psutil.cpu_percent(1))+‘%‘
        return {‘cpu_count‘:cpu_count,‘cpu_percent‘:cpu_percent}

    def get_memory_state(self):
        mem = psutil.virtual_memory()
        mem_total = mem.total / 1024 / 1024
        mem_free = mem.available /1024/1024
        mem_percent = ‘%s%%‘%mem.percent
        return {‘mem_toal‘:mem_total,‘mem_free‘:mem_free,‘mem_percent‘:mem_percent}

    def get_disk_state(self):
        disk_stat = psutil.disk_usage(‘/‘)
        disk_total = disk_stat.total
        disk_free = disk_stat.free
        disk_percent = ‘%s%%‘%disk_stat.percent
        return {‘mem_toal‘: disk_total, ‘mem_free‘: disk_free, ‘mem_percent‘: disk_percent}

psutil

方法二:、proc

#!usr/bin/env python
# -*- coding: utf-8 -*-
import time
import os
from multiprocessing import cpu_count

class NodeResource(object):

    def usage_percent(self,use, total):
        # 返回百分占比
        try:
            ret = int(float(use)/ total * 100)
        except ZeroDivisionError:
            raise Exception("ERROR - zero division error")
        return ‘%s%%‘%ret

    @property
    def cpu_stat(self,interval = 1):

        cpu_num = cpu_count()
        with open("/proc/stat", "r") as f:
            line = f.readline()
            spl = line.split(" ")
            worktime_1 = sum([int(i) for i in spl[2:]])
            idletime_1 = int(spl[5])
        time.sleep(interval)
        with open("/proc/stat", "r") as f:
            line = f.readline()
            spl = line.split(" ")
            worktime_2 = sum([int(i) for i in spl[2:]])
            idletime_2 = int(spl[5])

        dworktime = (worktime_2 - worktime_1)
        didletime = (idletime_2 - idletime_1)
        cpu_percent = self.usage_percent(dworktime - didletime,didletime)
        return {‘cpu_count‘:cpu_num,‘cpu_percent‘:cpu_percent}

    @property
    def disk_stat(self):
        hd = {}
        disk = os.statvfs("/")
        hd[‘available‘] = disk.f_bsize * disk.f_bfree
        hd[‘capacity‘] = disk.f_bsize * disk.f_blocks
        hd[‘used‘] =  hd[‘capacity‘] - hd[‘available‘]
        hd[‘used_percent‘] = self.usage_percent(hd[‘used‘], hd[‘capacity‘])
        return hd

    @property
    def memory_stat(self):
        mem = {}
        with open("/proc/meminfo") as f:
            for line in f:
                line = line.strip()
                if len(line) < 2: continue
                name = line.split(‘:‘)[0]
                var = line.split(‘:‘)[1].split()[0]
                mem[name] = long(var) * 1024.0
            mem[‘MemUsed‘] = mem[‘MemTotal‘] - mem[‘MemFree‘] - mem[‘Buffers‘] - mem[‘Cached‘]
        mem[‘used_percent‘] = self.usage_percent(mem[‘MemUsed‘],mem[‘MemTotal‘])
        return {‘MemUsed‘:mem[‘MemUsed‘],‘MemTotal‘:mem[‘MemTotal‘],‘used_percent‘:mem[‘used_percent‘]}

nr = NodeResource()

print nr.cpu_stat
print ‘==================‘
print nr.disk_stat
print ‘==================‘
print nr.memory_stat

proc

方法三:subprocess

from subprocess import Popen, PIPE
import os,sys

‘‘‘ 获取 ifconfig 命令的输出 ‘‘‘
def getIfconfig():
    p = Popen([‘ifconfig‘], stdout = PIPE)
    data = p.stdout.read()
    return data

‘‘‘ 获取 dmidecode 命令的输出 ‘‘‘
def getDmi():
    p = Popen([‘dmidecode‘], stdout = PIPE)
    data = p.stdout.read()
    return data

‘‘‘ 根据空行分段落 返回段落列表‘‘‘
def parseData(data):
    parsed_data = []
    new_line = ‘‘
    data = [i for i in data.split(‘\n‘) if i]
    for line in data:
        if line[0].strip():
            parsed_data.append(new_line)
            new_line = line + ‘\n‘
        else:
            new_line += line + ‘\n‘
    parsed_data.append(new_line)
    return [i for i in parsed_data if i]

‘‘‘ 根据输入的段落数据分析出ifconfig的每个网卡ip信息 ‘‘‘
def parseIfconfig(parsed_data):
    dic = {}
    parsed_data = [i for i in parsed_data if not i.startswith(‘lo‘)]
    for lines in parsed_data:
        line_list = lines.split(‘\n‘)
        devname = line_list[0].split()[0]
        macaddr = line_list[0].split()[-1]
        ipaddr  = line_list[1].split()[1].split(‘:‘)[1]
        break
    dic[‘ip‘] = ipaddr
    return dic

‘‘‘ 根据输入的dmi段落数据 分析出指定参数 ‘‘‘
def parseDmi(parsed_data):
    dic = {}
    parsed_data = [i for i in parsed_data if i.startswith(‘System Information‘)]
    parsed_data = [i for i in parsed_data[0].split(‘\n‘)[1:] if i]
    dmi_dic = dict([i.strip().split(‘:‘) for i in parsed_data])
    dic[‘vender‘] = dmi_dic[‘Manufacturer‘].strip()
    dic[‘product‘] = dmi_dic[‘Product Name‘].strip()
    dic[‘sn‘] = dmi_dic[‘Serial Number‘].strip()
    return dic

‘‘‘ 获取Linux系统主机名称 ‘‘‘
def getHostname():
    with open(‘/etc/sysconfig/network‘) as fd:
        for line in fd:
            if line.startswith(‘HOSTNAME‘):
                hostname = line.split(‘=‘)[1].strip()
                break
    return {‘hostname‘:hostname}

‘‘‘ 获取Linux系统的版本信息 ‘‘‘
def getOsVersion():
    with open(‘/etc/issue‘) as fd:
        for line in fd:
            osver = line.strip()
            break
    return {‘osver‘:osver}

‘‘‘ 获取CPU的型号和CPU的核心数 ‘‘‘
def getCpu():
    num = 0
    with open(‘/proc/cpuinfo‘) as fd:
        for line in fd:
            if line.startswith(‘processor‘):
                num += 1
            if line.startswith(‘model name‘):
                cpu_model = line.split(‘:‘)[1].strip().split()
                cpu_model = cpu_model[0] + ‘ ‘ + cpu_model[2]  + ‘ ‘ + cpu_model[-1]
    return {‘cpu_num‘:num, ‘cpu_model‘:cpu_model}

‘‘‘ 获取Linux系统的总物理内存 ‘‘‘
def getMemory():
    with open(‘/proc/meminfo‘) as fd:
        for line in fd:
            if line.startswith(‘MemTotal‘):
                mem = int(line.split()[1].strip())
                break
    mem = ‘%.f‘ % (mem / 1024.0) + ‘ MB‘
    return {‘Memory‘:mem}

if __name__ == ‘__main__‘:
    dic = {}
    data_ip = getIfconfig()
    parsed_data_ip = parseData(data_ip)
    ip = parseIfconfig(parsed_data_ip)

    data_dmi = getDmi()
    parsed_data_dmi = parseData(data_dmi)
    dmi = parseDmi(parsed_data_dmi)

    hostname = getHostname()
    osver = getOsVersion()
    cpu = getCpu()
    mem = getMemory()

    dic.update(ip)
    dic.update(dmi)
    dic.update(hostname)
    dic.update(osver)
    dic.update(cpu)
    dic.update(mem)

    ‘‘‘ 将获取到的所有数据信息并按简单格式对齐显示 ‘‘‘
    for k,v in dic.items():
        print ‘%-10s:%s‘ % (k, v)

pipe,poen

from subprocess import Popen, PIPE
import time

‘‘‘ 获取 ifconfig 命令的输出 ‘‘‘
# def getIfconfig():
#     p = Popen([‘ipconfig‘], stdout = PIPE)
#     data = p.stdout.read()
#     data = data.decode(‘cp936‘).encode(‘utf-8‘)
#     return data
#
# print(getIfconfig())

p = Popen([‘top -n 2 -d |grep Cpu‘],stdout= PIPE,shell=True)
data = p.stdout.read()
info = data.split(‘\n‘)[1]
info_list =  info.split()
cpu_percent =‘%s%%‘%int(float(info_list[1])+float(info_list[3]))
print cpu_percent

top+Popen

原文地址:https://www.cnblogs.com/zjchao/p/9280666.html

时间: 2024-11-08 20:22:15

用Python获取Linux资源信息的三种方法的相关文章

php获取网页header信息的4种方法

php获取网页header信息的方法多种多样,就php语言来说,我知道的方法有4种, 下面逐一献上. 方法一:使用get_headers()函数 推荐指数: ★★★★★ get_header方法最简单只要两行代码即可搞定.如下: $thisurl = "http://www.lao8.org/"; print_r(get_headers($thisurl, 1)); 得到的结果为: Array ( [0] => HTTP/1.1 200 OK [Cache-Control] =&

查看登陆系统用户的信息的三种方法详解

查看登陆系统用户的信息的三种方法详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.who这个命令显示可以谁在登陆,但是这个有很多的花式玩法,这个命令超简单 语法:who [OPTION]... [ FILE | ARG1 ARG2 ] 1.参数:-u,显示闲置时间,若该用户在前一分钟之内有进行任何动作,将标示成"."号,如果该用户已超过24小时没有任何动作,则标示出"old"字符串. 例如: 2.参数:-m,此参数的效果和指定"a

Linux更新内核的三种方法

Centos内核升级的三种方法 在基于CentOS平台的工作过程中,难免有时需要升级或者降级内核以验证功能.调试性能或者更新整个系统.如果从头重新编译一个内核,由于现在内核特性越来越复杂,依赖的库或者工具也不少,加之重新编译耗时不菲,了解更新内核的多种方式就显得尤为必要.下面根据笔者最近的工作,总结了三种方法,供大家参考. 方法一 如果机器不能联网,可以下载现有内核包到本地机器,直接在本地更新 1.从http://ftp.scientificlinux.org/linux/scientific/

python 获取linux系统性能信息

本文以及以后有关python 运维的文章都是<Python自动化运维:技术与最佳实践> 的读书笔记. psutil 是python的第三方库,通过它可以轻松获取系统运行的各种信息:cpu.内存.磁盘.网络等 一 安装 安装环境是centos 6.4 64位系统 yum install -y gcc python-devel wget https://pypi.python.org/packages/source/p/psutil/psutil-2.0.0.tar.gz --no-check-c

获取函数的地址(三种方法,分别是@,Addr,MethodAddress)

问题来源: http://www.cnblogs.com/del/archive/2008/07/30/1039045.html#1272783 在编译器看来, 重载函数根本就是完全不同的几个函数, 当然就会有不同的函数地址; 我们用常规方法获取的地址只是第一种重载的地址. 代码文件: unit Unit1; interface uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  

Linux 下系统调用的三种方法

系统调用(System Call)是操作系统为在用户态运行的进程与硬件设备(如CPU.磁盘.打印机等)进行交互提供的一组接口.当用户进程需要发生系统调用时,CPU 通过软中断切换到内核态开始执行内核系统调用函数.下面介绍Linux 下三种发生系统调用的方法: 通过 glibc 提供的库函数 glibc 是 Linux 下使用的开源的标准 C 库,它是 GNU 发布的 libc 库,即运行时库.glibc 为程序员提供丰富的 API(Application Programming Interfac

Python 判断文件是否存在的三种方法

通常在读写文件之前,需要判断文件或目录是否存在,不然某些处理方法可能会使程序出错.所以最好在做任何操作之前,先判断文件是否存在. 这里将介绍三种判断文件或文件夹是否存在的方法,分别使用os模块.Try语句.pathlib模块. 1.使用os模块 os模块中的os.path.exists()方法用于检验文件是否存在. 判断文件是否存在 import os #如果存在返回True >>>os.path.exists('test_file.txt') >>>True #如果不

Python判断文件是否存在的三种方法【转】

转:http://www.cnblogs.com/jhao/p/7243043.html 通常在读写文件之前,需要判断文件或目录是否存在,不然某些处理方法可能会使程序出错.所以最好在做任何操作之前,先判断文件是否存在. 这里将介绍三种判断文件或文件夹是否存在的方法,分别使用os模块.Try语句.pathlib模块. 1.使用os模块 os模块中的os.path.exists()方法用于检验文件是否存在. 判断文件是否存在 import os os.path.exists(test_file.tx

Python判断文件是否存在的三种方法

目录 1.使用os模块 判断文件是否可做读写操作 2.使用Try语句 3. 使用pathlib模块 正文 通常在读写文件之前,需要判断文件或目录是否存在,不然某些处理方法可能会使程序出错.所以最好在做任何操作之前,先判断文件是否存在. 这里将介绍三种判断文件或文件夹是否存在的方法,分别使用os模块.Try语句.pathlib模块. 1.使用os模块 os模块中的os.path.exists()方法用于检验文件是否存在. 判断文件是否存在 import os os.path.exists(test