Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1730280
  • 博文数量: 410
  • 博客积分: 9563
  • 博客等级: 中将
  • 技术积分: 4517
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-03 19:59
个人简介

文章分类

全部博文(410)

文章存档

2017年(6)

2016年(1)

2015年(3)

2014年(4)

2013年(32)

2012年(45)

2011年(179)

2010年(140)

分类: Python/Ruby

2011-02-01 10:18:35

在做视频编解码的程序,需要fork子进程去调用转码的tools做encode, 这里面就需要能很好的控制进程,让进程类似于跑在沙漏里面,安全,可控的运行, 
实现进程的管理接口,其实比较简单的,所有的进程信息来源,均来自 /proc 文件系统 

因为是所有进程相关的信息都是通过读取内存proc文件系统,所以没有任何性能问题, 

Bash代码 
  1. tommy@tommy-desktop:~$ cd /proc/  
  2. tommy@tommy-desktop:/proc$ ls  
  3. 1     1176   13    1340  14    1451   15736  20444  20460  240  33    43  59   636  756  8     9299       crypto       irq            modules       swaps  
  4. 10    11887  1300  1346  1402  1461   16     20445  20461  25   34    44  594  640  76   80    9305       devices      kallsyms       mounts        sys  
  5. 1025  12     1306  1347  1404  1462   1675   20446  20462  257  35    45  596  641  760  81    9319       diskstats    kcore          mtrr          sysrq-trigger  
  6. 1085  1214   1309  1352  1413  1467   17     20447  20646  26   36    46  598  66   768  82    9321       dma          key-users      net           sysvipc  
  7. 1091  1232   1310  1358  1414  14734  18     20448  21     27   362   5   6    67   77   828   9323       dri          kmsg           pagetypeinfo  timer_list  
  8. 1098  1263   1313  1363  1428  1496   19     20449  2164   28   37    51  60   7    770  83    9340       driver       kpagecount     partitions    timer_stats  
  9. 11    1271   1314  1365  1430  15     2      20450  218    284  38    52  61   70   773  833   acpi       execdomains  kpageflags     sched_debug   tty  
  10. 1105  1273   1318  1367  1432  151    20     20451  22     287  39    53  618  71   779  84    asound     fb           latency_stats  schedstat     uptime  
  11. 1134  1277   1325  1370  1433  1517   20439  20453  23     29   4     54  62   716  78   9     buddyinfo  filesystems  loadavg        scsi          version  
  12. 1135  1285   1327  1376  1436  1520   20440  20454  236    3    40    55  621  72   781  9043  bus        fs           locks          self          version_signature  
  13. 1136  1287   1333  1381  1441  15355  20441  20457  237    30   4093  56  627  73   784  9045  cgroups    interrupts   mdstat         slabinfo      vmallocinfo  
  14. 1161  1288   1334  1386  1443  15550  20442  20458  238    31   41    57  630  74   785  9047  cmdline    iomem        meminfo        softirqs      vmstat  
  15. 1170  1294   1339  1391  1449  15596  20443  20459  239    32   42    58  632  75   79   922   cpuinfo    ioports      misc           stat          zoneinfo  
  16. tommy@tommy-desktop:/proc$   


所以对进程的信息采集,都是可以通过读取/proc文件系统获得 

但已经有开源实现如下 

A process utilities module 

 


获得当前系统上所有正在运行的进程(pid) 

Python代码 
  1. tommy@tommy-desktop:~/workerpool/worker/apps/health$ python  
  2. Python 2.6.5 (r265:79063, Apr 16 201013:09:56)   
  3. [GCC 4.4.3] on linux2  
  4. Type "help""copyright""credits" or "license" for more information.  
  5. >>> import psutil  
  6. >>> psutil.get_pid_list()  
  7. [01234567891011121314151617181920212223252627282930313233343536373839404142434445465152535455565758596061626667707172737475767778798081828384151218236237238239240257284287362422425594596598618621627630632636640641716756760768770773779781784785828833922102510851091109811051134113511361161117011761214123212631271127312771285128712881294130013061309131013131314131813251327133313341339134013461347135213581363136513671370137613811386139114021404141314141428143014321433143614411443144914511461146214671496151715201675216440939043904590479299930593199321932393401188713354147341535515550155961562015621156291563015735]  
  8. >>>   


获得指定进程pid的一些详尽信息以及控制 

主要信息是: 
1. get_cpu_percent() 获得当前CPU使用百分比 

2. get_cpu_times() 获得该进程使用cpu滴答,可以做一些CPU资源限制,比如指定进程能够使用CPU的总时钟滴答,超过可以强制杀掉

3. create_time 获得该进程已经运行的墙上时间,可以做为控制进程运行时间的依据,比如指定进程可以运行的时间timeout 

4. get_memory_percent() 获得该进程当前占用内存的情况,可以作为控制进程内存使用量方面的控制 

5. is_running 判断该进程是否在running list上 

6. suspend() 可以将该进程暂时挂起 

7. kill() 用来杀死进程主要是向该进程发送SIGKILL信号,回收资源 


Python代码 
  1. >>> p=psutil.Process(20618)  
  2. >>> dir(p)  
  3. ['__class__''__delattr__''__dict__''__doc__''__eq__''__format__''__getattribute__''__hash__''__init__''__module__''__new__''__reduce__''__reduce_ex__''__repr__''__setattr__''__sizeof__''__str__''__subclasshook__''__weakref__''_last_kern_time''_last_sys_time''_last_user_time''_procinfo''cmdline''create_time''deproxy''get_cpu_percent''get_cpu_times''get_memory_info''get_memory_percent''getcwd''gid''is_proxy''is_running''kill''name''parent''path''pid''ppid''resume''suspend''uid''username']  
  4. >>> p.name  
  5. 'aptd'  
  6. >>> p.cmdline  
  7. ['/usr/bin/python''/usr/sbin/aptd']  
  8. >>> p.username  
  9. 'root'  
  10. >>> p.create_time  
  11. 1289453012.6500001  
  12. >>> p.get_cpu_percent()  
  13. 0.0  
  14. >>> p.get_cpu_times()  
  15. (0.130.39000000000000001)  
  16. >>> p.get_memory_info()  
  17. (1176371217235968)  
  18. >>> p.get_memory_percent()  
  19. 0.76203818681610258  


除了针对指定的进程进行监控之外,还可以获得该物理机器的负载信息 

1. psutil.cpu_percent() 获得当前物理机器总的CPU使用率 

2. psutil.cpu_times() 获得CPUtimes累计使用量,可以用于计费 

3. psutil.TOTAL_PHYMEM 
psutil.avail_phymem() 
psutil.used_phymem() 

获得当期机器的物理内存使用情况(以字节为单位) 

4. psutil.total_virtmem() 
psutil.avail_virtmem() 
psutil.used_virtmem() 

获得当前机器的虚拟内存使用情况(以字节为单位) 
阅读(978) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~