python关于获取当前系统的状态系统性能信息模块psutil#可跨平台psutil是一个跨平台库,轻松获取系统运行的进程和系统利用率能实现ps、top、lso、nice、netstat、ifconfig、who、df、kill、freeionice、iostat、iotop、uptime、pidof、tty、taskset、pmap这些命令的功能首先确定..
分类:
编程语言 时间:
2015-05-25 14:56:41
阅读次数:
353
废话不多说了,直接贴代码,大家配置文件都是喜欢用xml我不太喜欢,下面这个是自定义配置文件:
class_config.py
#!/usr/bin/env python
#coding:utf-8
'''此处定义邮件的相关参数'''
class Mail_conf():
sender = 'fyxichen@126.com'
receiver = 'fyxichen@12...
分类:
编程语言 时间:
2015-05-21 15:43:01
阅读次数:
178
#!/usr/bin/env python
#coding:utf-8
import psutil
import time
import sys
from optparse import OptionParser
parser = OptionParser()
parser.add_option("-t", "--time", dest="time",
he...
分类:
编程语言 时间:
2015-05-20 09:44:16
阅读次数:
147
在安装Python的psutil模块时,报“error:command‘x86_64-linux-gnu-gcc‘failedwithexitstatus1”的错误,系统提示缺少Python的头文件,那就是说系统没有安装python的开发包,安装之就行了。$sudopipinstallpsutil
[sudo]passwordforrichard:
Downloading/unpackingpsutil
Downl..
分类:
编程语言 时间:
2015-05-19 07:33:13
阅读次数:
532
psutil.cpu_percent() cpu 百分比mem = psutil.virtual_memory()mem.total,mem.used mem.free psutil.cpu_count() 逻辑cpupsutil.cpu_count(logical=False)物理cpupsuti...
分类:
其他好文 时间:
2015-05-13 18:50:46
阅读次数:
206
#!/usr/bin/evnpython
#-*-coding:utf-8-*-
#Author=‘Jun‘
"""
可以同时监控多个进程
"""
importsys
importre
importos
importlinecache
try:
importpsutil
exceptImportErrorase:
printe
sys.exit()
defprocess(processname):
plist=[]
getplist=psutil.process_iter()
..
分类:
系统相关 时间:
2015-05-07 01:06:38
阅读次数:
218
本来这周打算基于glaphite来对系统服务进行监控,但是中间一直有个地方没有搞明白,所以至于glaphite的web页面监控可能要推迟到下周与朋友相见!今天就和大家聊聊一个非常不错的Python下系统信息模块pustil简介psutil是一个跨平台库,主要应用于系统监控,分析和限制系统资源及..
分类:
其他好文 时间:
2015-03-28 06:35:02
阅读次数:
280
想写一个RESTAPI来获取OS的CPU,内存等系统信息,正准备苦哈哈的轮一个/proc/stat的parser,发现了psutil~一个跨平台的获取系统信息的python库,支持linux,windows,osx,sunos,可以说很好,很全面,很pythonichttps://github.com/giampaolo/psutil简介:psutil(pythonsystemandp..
分类:
编程语言 时间:
2015-03-01 22:27:26
阅读次数:
286
第一步:下载pustil 网址:https://pipy.python.org (http://yunpan.cn/cJg8aQpYwqfzh (提取码:7fa7)) 第二步:安装这个就没有什么好说的了。第三步:用visula studio 做为IDE 的话还要做点别的事。 A: 安...
#!/usr/bin/env python#coding: utf-8#author:luodi date:2015/02/12#description:this is a send mail scriptimport smtplibfrom email.mime.multipart import....
分类:
编程语言 时间:
2015-02-12 12:00:44
阅读次数:
198