python获取linux的系统信息

发布时间:2019-09-07 08:12:33编辑:auto阅读(1525)

     python写的抓取linux系统主要信息的脚本,主要就是内存,硬盘、CPU之类的信息。

     

    1. 内存信息 / meminfo 
    2. 返回dict 
    3. #!/usr/bin/env python 
    4. def memory_stat(): 
    5.     mem = {} 
    6.     f = open("/proc/meminfo"
    7.     lines = f.readlines() 
    8.     f.close() 
    9.     for line in lines: 
    10.         if len(line) < 2: continue 
    11.         name = line.split(':')[0] 
    12.         var = line.split(':')[1].split()[0] 
    13.         mem[name] = long(var) * 1024.0 
    14.     mem['MemUsed'] = mem['MemTotal'] - mem['MemFree'] - mem['Buffers'] - mem['Cached'
    15.     return mem 
    16.  
    17. CPU信息 / cpuinfo 
    18. 返回list,每核心一dict 
    19. #!/usr/bin/env python 
    20. def cpu_stat(): 
    21.     cpu = [] 
    22.     cpuinfo = {} 
    23.     f = open("/proc/cpuinfo"
    24.     lines = f.readlines() 
    25.     f.close() 
    26.     for line in lines: 
    27.         if line == 'n'
    28.             cpu.append(cpuinfo) 
    29.             cpuinfo = {} 
    30.         if len(line) < 2: continue 
    31.         name = line.split(':')[0].rstrip() 
    32.         var = line.split(':')[1] 
    33.         cpuinfo[name] = var 
    34.     return  
    35.  
    36. cpu负载信息 / loadavg 
    37. 返回dict 
    38. #!/usr/bin/env python 
    39. def load_stat(): 
    40.     loadavg = {} 
    41.     f = open("/proc/loadavg"
    42.     con = f.read().split() 
    43.     f.close() 
    44.     loadavg['lavg_1']=con[0] 
    45.     loadavg['lavg_5']=con[1] 
    46.     loadavg['lavg_15']=con[2] 
    47.     loadavg['nr']=con[3] 
    48.     loadavg['last_pid']=con[4] 
    49.     return loadavg 
    50.  
    51. 运转时间 / Uptime 
    52. 返回dict 
    53. #!/usr/bin/env python 
    54. def uptime_stat(): 
    55.     uptime = {} 
    56.     f = open("/proc/uptime"
    57.     con = f.read().split() 
    58.     f.close() 
    59.     all_sec = float(con[0]) 
    60.     MINUTE,HOUR,DAY = 60,3600,86400 
    61.     uptime['day'] = int(all_sec / DAY ) 
    62.     uptime['hour'] = int((all_sec % DAY) / HOUR) 
    63.     uptime['minute'] = int((all_sec % HOUR) / MINUTE) 
    64.     uptime['second'] = int(all_sec % MINUTE) 
    65.     uptime['Free rate'] = float(con[1]) / float(con[0]) 
    66.     return uptime 
    67.  
    68. 获取网卡流量信息 /proc/net/dev 
    69. 返回dict,单位byte 
    70. #!/usr/bin/env python 
    71. def net_stat(): 
    72.     net = [] 
    73.     f = open("/proc/net/dev"
    74.     lines = f.readlines() 
    75.     f.close() 
    76.     for line in lines[2:]: 
    77.         con = line.split() 
    78.         ""
    79.         intf = {} 
    80.         intf['interface'] = con[0].lstrip(":"
    81.         intf['ReceiveBytes'] = int(con[1]) 
    82.         intf['ReceivePackets'] = int(con[2]) 
    83.         intf['ReceiveErrs'] = int(con[3]) 
    84.         intf['ReceiveDrop'] = int(con[4]) 
    85.         intf['ReceiveFifo'] = int(con[5]) 
    86.         intf['ReceiveFrames'] = int(con[6]) 
    87.         intf['ReceiveCompressed'] = int(con[7]) 
    88.         intf['ReceiveMulticast'] = int(con[8]) 
    89.         intf['TransmitBytes'] = int(con[9]) 
    90.         intf['TransmitPackets'] = int(con[10]) 
    91.         intf['TransmitErrs'] = int(con[11]) 
    92.         intf['TransmitDrop'] = int(con[12]) 
    93.         intf['TransmitFifo'] = int(con[13]) 
    94.         intf['TransmitFrames'] = int(con[14]) 
    95.         intf['TransmitCompressed'] = int(con[15]) 
    96.         intf['TransmitMulticast'] = int(con[16]) 
    97.         ""
    98.         intf = dict( 
    99.             zip( 
    100.                 ( 'interface','ReceiveBytes','ReceivePackets'
    101.                   'ReceiveErrs','ReceiveDrop','ReceiveFifo'
    102.                   'ReceiveFrames','ReceiveCompressed','ReceiveMulticast'
    103.                   'TransmitBytes','TransmitPackets','TransmitErrs'
    104.                   'TransmitDrop''TransmitFifo','TransmitFrames'
    105.                   'TransmitCompressed','TransmitMulticast' ), 
    106.                 ( con[0].rstrip(":"),int(con[1]),int(con[2]), 
    107.                   int(con[3]),int(con[4]),int(con[5]), 
    108.                   int(con[6]),int(con[7]),int(con[8]), 
    109.                   int(con[9]),int(con[10]),int(con[11]), 
    110.                   int(con[12]),int(con[13]),int(con[14]), 
    111.                   int(con[15]),int(con[16]), ) 
    112.             ) 
    113.         ) 
    114.  
    115.         net.append(intf) 
    116.     return net 
    117.  
    118. 磁盘空间使用 
    119. 使用内置python内置函数,返回dict,单位byte 
    120. #!/usr/bin/env python 
    121. def disk_stat(): 
    122.     import os 
    123.     hd={} 
    124.     disk = os.statvfs("/"
    125.     hd['available'] = disk.f_bsize * disk.f_bavail 
    126.     hd['capacity'] = disk.f_bsize * disk.f_blocks 
    127.     hd['used'] = disk.f_bsize * disk.f_bfree 
    128.     return hd 

     

关键字